如题,想通过 nginx 配置一个通配域名,比如*.baidu.com 。然后访问的时候 www.baidu.com 和 m.baidu.com 跳到相对应的站点。求指点,谢谢!
server_name .baidu.com;
proxy_pass $scheme://$http_host$requrest_uri;
$request_uri。。。
server_name *.baidu.com;
return 302 http://...;
通配解析 然后根据来源跳转?
嗯, 感觉不好配。。。
不行哎。。。
建议看 http://nginx.org/en/docs/http/converting_rewrite_rules.html
server {
listen 80 default_server;
server_name _;
if ($http_host = example.org) {
rewrite (.*) http://www.example.org$1;
}
}
监听 80 端口后面跟 default_server,效果和*.baidu.com 差不多。具体规则再用 if 判断就行了.
谢谢,我研究下!
你看 manual 能看完么?
This is a wrong, cumbersome, and ineffective way.
官方批 if is evil 很久了
首先,光从你的描述来看,1 楼是对的
但是,我觉得你需要的可能是替换顶级域名但保留二级前缀,那么:
server_name ~(.*).baidu.com;
return 302 $scheme://$1.example.com/$requrest_uri;
如果担心$1 被其他操作覆盖的话,也可以用 named capture 语法,google nginx named regex capture
唔我忘了转义.了
看这个: http://nginx.org/en/docs/http/server_names.html#regex_names
见笑了
不好意思,我可能没描述清楚 。比如:在国外的用户想访问 m.baidu.com 和 www.huizuche.com ,我分别用两台 nginx。一台在国内,一台在国外,中间用专线打通。需要达到的目的就是国外用户通过 80 端口可以 同时访问 m.baidu.com 和 www.baidu.com 而不冲突。
已解决,想的有点复杂了。谢谢大家的热心帮助!
第二个 server 块