thinkphp 配置nginx 伪静态

thinkphp 配置nginx 伪静态

location / {

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

你可能感兴趣的:(thinkphp 配置nginx 伪静态)