Files
yakpanel-core/rewrite/nginx/pbootcms.conf

6 lines
150 B
Plaintext
Raw Normal View History

2026-04-07 02:04:22 +05:30
location / {
if (!-e $request_filename){
rewrite ^/index.php(.*)$ /index.php?p=$1 last;
rewrite ^(.*)$ /index.php?s=$1 last;
}
}