thinkphp6.0 的nginx 伪静态配置

作者:邓草 发布于 2020-07-23 阅读(19)

location / {

    index index.php;
    # thinkphp6.0 的 nginx 伪静态配置
    if (!-e $request_filename) {
       rewrite  ^(.*)$  /index.php?s=/$1  last;
       break;
    }
}


发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。