http://localhost:81/index/Index/hello
无法访问的时候 使用http://localhost:81/?s=index/Index/hello 可以访问到想要去的地方
这种情况就需要修改伪静态的配置信息
内容如下:
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
![](https://img.haomeiwen.com/i8847610/c14e5e4c91dbb1f0.png)
http://localhost:81/index/Index/hello
无法访问的时候 使用http://localhost:81/?s=index/Index/hello 可以访问到想要去的地方
这种情况就需要修改伪静态的配置信息
内容如下:
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
本文标题:PHP路由问题 记录
本文链接:https://www.haomeiwen.com/subject/swpotltx.html
网友评论