我在server_name
. 我想将example.com
(配置为 *.example.com)的所有子域重定向到foo.com
exceptxyz.example.com
我的配置如下
server {
listen 80;
server_name *.example.com;
location / {
proxy_pass http://$1.foo.com;
}
}
我不想更改任何请求xyz.example.com