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

lnmp一键安装环境中nginx开启pathinfo

时间:2014-12-08 17:19:21      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   on   div   

问题及原理可参考:http://www.laruence.com/2009/11/13/1138.html

如果是用lnmp脚本一键安装的开发环境,可以通过如下方式开户pathinfo:

1、注释nginx.conf中的try_files(因为跟pathinfo.conf中的重复了),开启pathinfo.conf配置:

1 location ~ [^/]\.php(/|$)
2 {
3     # comment try_files $uri =404; to enable pathinfo
4     #try_files $uri =404;
5     fastcgi_pass  unix:/tmp/php-cgi.sock;
6     fastcgi_index index.php;
7     include fastcgi.conf;
8     include pathinfo.conf;
9 }

即注释掉第4行,打开第8行。

2、重启nginx服务:

nginx -s reload

 

lnmp一键安装环境中nginx开启pathinfo

标签:style   blog   http   io   ar   color   sp   on   div   

原文地址:http://www.cnblogs.com/lurenjiashuo/p/nginx-enable-pathinfo.html

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