想将 http://a.baidu.com/123 重定向到 http://a.google.com/123
相当于把 baidu.com 这个一级域名改为 google.com
我试了 rewrite ^http://(.).baidu.com/(.) http://$1.google.com/$2 redirect;
貌似没效果。
有哪位老哥能指点一下么
1
snoopyhai 2022-07-21 11:33:10 +08:00 1
|
2
livenux 2022-07-21 11:45:37 +08:00 1
```
server { server_name ~^(?<subdomain>\w+)\.baidu.com\.com$; location / { rewrite ^ https://$subdomain.google.com.com$request_uri permanent; } } ``` 未作测试 |
3
shanghai1943 OP @snoopyhai #1 感谢。网站里面似乎只能同域名跳转。用了 2 楼老哥方法搞定了。
|
4
shanghai1943 OP @livenux #2 感谢老哥指点👍
|