thinkphp5.x ngnix index 自动解析
2021-11-11 本文已影响0人
JUN888
修改配置文件
location / {
index index.html index.htm index.php;
#TP5路由重写,实现index.php自动解析
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
break;
}
#实现结束
}