美文网首页
Rewrite 重写配置

Rewrite 重写配置

作者: 代码界的小学生 | 来源:发表于2017-03-28 15:27 被阅读0次

    ps:在网站建设的过程中会出现服务器未开启rewrite配置,最近只用nginx配置thinkphp了,所以先只写一个吧

    nginx 基于 thinkphp 的 rewrite 配置

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

    相关文章

      网友评论

          本文标题:Rewrite 重写配置

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