thinkphp框架nginx配置

在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;  
    }
}

 

posted @ 2021-01-05 15:19  动灵  阅读(954)  评论(0编辑  收藏  举报