mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 05:31:44 +08:00
8 lines
160 B
Plaintext
8 lines
160 B
Plaintext
location ~* (runtime|application)/ {
|
|
return 403;
|
|
}
|
|
location / {
|
|
if (!-e $request_filename) {
|
|
rewrite ^(.*)$ /index.php?s=$1 last; break;
|
|
}
|
|
} |