当前位置:首页 > 泰国试管 > 人文咨询 > 正文

thinkphp6.0 的nginx 伪静态配置

作者:邓草2020-07-23 16:01:39人文咨询阅读 1002
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;
    }
}