如果我要把 / 的路径重定向到 /aaa/ 路径 rewrite 怎么写哇?
location / {
rewrite ^/(.*) http://$host/aaa/$1 permanent;
}
在用的:
location /MobCastle_N {
rewrite ^/MobCastle_N/(.*) http://$host/$1 permanent;
}
如果我要把 / 的路径重定向到 /aaa/ 路径 rewrite 怎么写哇?
location / {
rewrite ^/(.*) http://$host/aaa/$1 permanent;
}
在用的:
location /MobCastle_N {
rewrite ^/MobCastle_N/(.*) http://$host/$1 permanent;
}