二.配置
对于形如tools/index.php/login/index 这样的文件路径, Nginx正则匹配为路径而不是php文件. 所以我们需要去掉($)
1.使用php内部解析,将Nginx获取的变量直接传给后面的php页面。
location ~
.php {
#去掉了最后的$
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param PATH_INFO $fastcgi_script_name;
}