时间:2021-07-01 10:21:17 帮助过:8人阅读

location /{
index index.html index.htm index.php;
if (-e $request_filename) {
break;
}
if (!-e $request_filename) {
rewrite ^(.+)$ /handler.php?_url=$1 last;
break;
}
}