美文网首页
tp5 ngins 404 local win10

tp5 ngins 404 local win10

作者: 遥控板 | 来源:发表于2019-10-15 14:13 被阅读0次

    在Nginx低版本中,是不支持PATHINFO的,但是可以通过在Nginx.conf中配置转发规则实现:

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

    https://www.kancloud.cn/manual/thinkphp5/177576

    相关文章

      网友评论

          本文标题:tp5 ngins 404 local win10

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