求助nginx重写,将index.php后面的?和&转换成⼀

2024-12-01 03:03:07
推荐回答(1个)
回答(1):

root /home/wwwroot/tpzy62/;#你的根路径

location / {
 root /home/wwwroot/tpzy62/;#你的根路径
 index index.html index.htm index.php;
 if (!-e $request_filename) {
 rewrite ^/index.php(.*)$ /index.php?s=$1 last;
 rewrite ^(.*)$ /index.php?s=$1 last;
 break;
 }
 }