【发布时间】:2016-05-04 09:55:09
【问题描述】:
我在server_name 中使用通配符。我想将example.com(配置为*.example.com)的所有子域重定向到foo.com,除了xyz.example.com
我的配置如下
server {
listen 80;
server_name *.example.com;
location / {
proxy_pass http://$1.foo.com;
}
}
我不想更改发往xyz.example.com的任何请求
【问题讨论】:
标签: nginx nginx-location