如题,想通过 nginx 配置一个通配域名,比如*.baidu.com 。然后访问的时候 www.baidu.com 和 m.baidu.com 跳到相对应的站点。求指点,谢谢!
1
fangpeishi 2017-10-11 18:02:46 +08:00
server_name .baidu.com;
proxy_pass $scheme://$http_host$requrest_uri; |
2
fangpeishi 2017-10-11 18:03:18 +08:00
$request_uri。。。
|
3
lslqtz 2017-10-11 19:30:05 +08:00
server_name *.baidu.com;
return 302 http://...; |
4
4SZvHBhBZ7fo5t3s 2017-10-11 23:40:54 +08:00
通配解析 然后根据来源跳转?
|
6
krisbai OP 不行哎。。。
|
7
veoco 2017-10-12 11:27:00 +08:00
建议看 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 判断就行了. |
9
ryd994 2017-10-12 12:34:13 +08:00 via Android
@veoco 你看 manual 能看完么?
This is a wrong, cumbersome, and ineffective way. 官方批 if is evil 很久了 @krisbai 首先,光从你的描述来看,1 楼是对的 但是,我觉得你需要的可能是替换顶级域名但保留二级前缀,那么: server_name ~(.*).baidu.com; return 302 $scheme://$1.example.com/$requrest_uri; 如果担心$1 被其他操作覆盖的话,也可以用 named capture 语法,google nginx named regex capture |
10
ryd994 2017-10-12 12:35:54 +08:00 via Android
|
12
krisbai OP @ryd994 不好意思,我可能没描述清楚 。比如:在国外的用户想访问 m.baidu.com 和 www.huizuche.com ,我分别用两台 nginx。一台在国内,一台在国外,中间用专线打通。需要达到的目的就是国外用户通过 80 端口可以 同时访问 m.baidu.com 和 www.baidu.com 而不冲突。
|
13
krisbai OP 已解决,想的有点复杂了。谢谢大家的热心帮助!
|