phpstudy的配置

host主机配置

最后一行

127.0.0.1  cmf.im
server {
        listen       80;
        server_name  cmf.im 127.0.0.1;
        root   "D:/cmf/PHPTutorial/WWW/thinkcmf/public";//thinkcmf安装路径
        location / {
            index  index.html index.htm index.php;
                #主要是这一段一定要确保存在
                if (!-e $request_filename) {
                    rewrite  ^(.*)$  /index.php?s=/$1  last;
                    break;
                }
                #结束
            #autoindex  on;
        }
        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;
        }
}

在nginx.conf的尾部添加路径代码

include vhosts.conf;
include D:/cmf/PHPTutorial/nginx/conf/online.conf/*.conf;
原文地址:https://www.cnblogs.com/qianjilou/p/11085379.html