邓草的博客

您现在的位置是:首页 > 程序技术 > 技术分享 > 正文

技术分享

thinkphp6.0 的nginx 伪静态配置

作者:邓草2020-07-23 16:01:39技术分享1497
location / { index index.php; # thinkphp6.0 的 nginx 伪静态配置 if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } }

location / {

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

分享到:

读者评论

评论功能已关闭。