nginx服务器设置path_info模式
Posted 周起
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx服务器设置path_info模式相关的知识,希望对你有一定的参考价值。
1.find / -name nginx.conf找到nginx配置文件
2.找到location
location ~ \.php {#去掉这里的$
root /var/www/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$; #增加这一句
fastcgi_param PATH_INFO $fastcgi_path_info; #增加这一句
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
3.重启nginx,find / -name nginx找到sbin目录执行./nginx -s reload
以上是关于nginx服务器设置path_info模式的主要内容,如果未能解决你的问题,请参考以下文章
Nginx(PHP/fastcgi)的PATH_INFO问题