mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 01:48:43 +08:00
9 lines
269 B
Plaintext
9 lines
269 B
Plaintext
location / {
|
|
try_files $uri $uri/ /index.php$is_args$args ;
|
|
}
|
|
|
|
if (!-e $request_filename) {
|
|
rewrite /wp-admin$ $scheme://$host$request_uri/ permanent;
|
|
rewrite ^/([^/]+)?(/wp-(content|admin|includes).*) $2 last;
|
|
rewrite ^/([^/]+)?(/[^/]+.php)$ $2 last;
|
|
} |