程序下载地址:https://www.6zy6.com/shop/7.html 将伪静态规则修改成一下的就行 location ~* (application)/{ return 403;}location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php?s=$1 last; break; }}...
程序下载地址:https://www.6zy6.com/shop/7.html
将伪静态规则修改成一下的就行
location ~* (application)/{
return 403;
}
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}