location /account {
rewrite (.*)/(.*)/(.*) https://$2.abc.com/zh-CN/chris permanent;
}
前面 (.)/(.)/(.*) 是之前网站的规则 https://$2.abc.com/zh-CN/chris permanent; #是后面需要重定向的规则
location /account {
rewrite (.*)/(.*)/(.*) https://$2.abc.com/zh-CN/chris permanent;
}
前面 (.)/(.)/(.*) 是之前网站的规则 https://$2.abc.com/zh-CN/chris permanent; #是后面需要重定向的规则
评论区