码迷,mamicode.com
首页 > 其他好文 > 详细

nginx服务器设置path_info模式

时间:2017-05-15 19:53:33      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:reload   path   inf   info   cgi   bin   文件   include   nginx   

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模式

标签:reload   path   inf   info   cgi   bin   文件   include   nginx   

原文地址:http://www.cnblogs.com/zhouqi666/p/6857607.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!