美文网首页
PHP路由问题 记录

PHP路由问题 记录

作者: HueyYao | 来源:发表于2021-02-06 18:42 被阅读0次

http://localhost:81/index/Index/hello
无法访问的时候 使用http://localhost:81/?s=index/Index/hello 可以访问到想要去的地方

这种情况就需要修改伪静态的配置信息
内容如下:

location / { 
   if (!-e $request_filename) {
        rewrite  ^(.*)$  /index.php?s=/$1  last;
    }
}
image.png

相关文章

网友评论

      本文标题:PHP路由问题 记录

      本文链接:https://www.haomeiwen.com/subject/swpotltx.html