首页 > 学院 > 开发设计 > 正文

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

2019-11-15 01:58:09
字体:
来源:转载
供稿:网友
lnmp一键安装环境中nginx开启pathinfo

问题及原理可参考: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 pathinfo4     #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


上一篇:smarty小记

下一篇:YII 的源码分析(-)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表