在nginx对应项目的配置文件中修改

location / {
    index index.php index.html error/index.html;
    # !!!url重写!!!
    if (!-e $request_filename) {  # 注意 if 后面有空格
        rewrite ^/index.php(.*)$ /index.php?s=$1 last;  
        rewrite ^(.*)$ /index.php?s=$1 last;  
        break;  
    }
}

 

版权声明:本文为donlyn原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/donlyn/p/14236023.html