PhpStudy在nginx下配置虚拟主机和伪静态

目录在PhpStudy安装的位置,我的是D:\PhpStudy20180211\PHPTutorial\nginx\conf\vhosts.conf

也可以在PhpStudy面板下快速打开:其他选项菜单->打开配置文件->vhosts-ini

PhpStudy在nginx下配置虚拟主机和伪静态

配置 

server {
        listen       80;
        server_name  mjdlg.com;
        root  "D:\PhpStudy20180211\PHPTutorial\WWW\web\wap";
        location / {
            index  index.html index.htm index.php;
			autoindex  on;
			# 伪静态配置         
			if (!-e $request_filename) {     
				rewrite  ^(.*)$  /index.php?s=$1  last;          
				break;       
			}


        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
}