cdnflydadao/web/nginx伪静态.txt

5 lines
99 B
Plaintext
Raw Normal View History

2022-07-15 03:00:43 +08:00
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php/$1 last; break;
}
}