thinkphp 配置nginx 偽靜態(tài)
location / {
index index.php;
# thinkphp6.0 的 nginx 偽靜態(tài)配置
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
thinkphp 配置nginx 偽靜態(tài)
location / {
index index.php;
# thinkphp6.0 的 nginx 偽靜態(tài)配置
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}