Thinkphp nginx 伪静态

楼主

location / {

    index  index.html index.htm index.php;

    #autoindex  on;

    if (!-e $request_filename) {

        rewrite  ^(.*)$  /index.php?s=/$1  last;

        break;

    }

}

-----------------

location /

   {

      index index.php;

      #ThinkPHP REWRITE支持

      if (!-e  $request_filename) {

          rewrite ^/(.*)$ /index.php?s=$1 last;

      }

  }

07月31日 15:13 回复 点赞  
Copyright © 2016-2020 万图素材 版权所有
联系地址:广东省清远市清城区百家大街101号
电话:3078847178 蜀ICP备20000871号-2
回复