cdnflydadao/web/nginx伪静态.txt
2022-07-26 22:50:49 +02:00

5 lines
99 B
Plaintext

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