location / { index index.php; # thinkphp6.0 的 nginx 伪静态配置 if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } } 来源:oschina链接:https://my.oschina.net/dengzhenhua/blog/4332452 标签 nginx php ThinkPHP