PHP 宝塔 上 Nginx 跑 ThinkPHP

参考文章

9E57CD1A-EC37-4BC6-AE5F-964A9A44F2B0

1487B6D1-A864-4805-BA61-586F1EE511F0

内容:

location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}

这样就可以访问ThinkPHP的项目了~~
不用去改其他的地方~~~