当前位置:Gxlcms > PHP教程 > nginx路径解析

nginx路径解析

时间:2021-07-01 10:21:17 帮助过:56人阅读

访问的地址:http://ju.com/admin.php/DaiLogin/showLogin
错误提示:
2015/05/26 19:09:16 [error] 24049#0: *546 rewrite or internal redirection cycle while processing "/index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//admin.php/DaiLogin/showLogin", client: 127.0.0.1, server: ju.com, request: "GET /admin.php/DaiLogin/showLogin HTTP/1.1", host: "ju.com"
nginx的配置参数:


服务器也是这个配置 没有问题 就是nginx的版本一样。本地这个重新怎么会有这么多的index.php
我应该怎么修改?

回复内容:

访问的地址:http://ju.com/admin.php/DaiLogin/showLogin
错误提示:
2015/05/26 19:09:16 [error] 24049#0: *546 rewrite or internal redirection cycle while processing "/index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//index.php//admin.php/DaiLogin/showLogin", client: 127.0.0.1, server: ju.com, request: "GET /admin.php/DaiLogin/showLogin HTTP/1.1", host: "ju.com"
nginx的配置参数:


服务器也是这个配置 没有问题 就是nginx的版本一样。本地这个重新怎么会有这么多的index.php
我应该怎么修改?

这不是nginx rewrite经典的死循环问题吗。把你location / 下的rewrite最后的last改成break 就好了。

last 会在检测到URL匹配后,继续匹配location,当然能匹配到 / ,所以就死循环了,nginx判断10次后退出,也就是你提问里出现了 1 + 10 = 11 个index.php。

参考这里: http://segmentfault.com/a/1190000002797606

网站已经能访问了啊

人气教程排行