Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.2k views
in Technique[技术] by (71.8m points)

nginx 子域名http转https问题

现在我有一个主页 www.xxx.com ,使用 nginx 做反向代理,我配置了它的 http 跳转 https:

server {
    server_name www.xxx.com;
    listen 80;
    return 301 https://$host$request_uri;
}

这个是没有问题的。现在我想这么一个功能, http://blog.xxx.com 跳转 https://blog.xxx.com

目前折腾的结果是 http://blog.xxx.com 自动跳到 http://www.xxx.com 去了。我试着把上面的配置复制一份,改了 server_name 没用。通过 if 条件判断 host 似乎也没用(也可能是我太菜了,写的有问题)。

请问各位有什么办法解决这个问题?感激不尽


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...