2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 05:31:44 +08:00
Files
panel/pkg/embed/rewrites/nginx/pbootcms.conf

6 lines
153 B
Plaintext

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