user3448600 Asked: 2017-10-26 15:27:32 +0800 CST2017-10-26 15:27:32 +0800 CST 2017-10-26 15:27:32 +0800 CST 在 Nginx 中将所有内容重定向到 https [重复] 772 如何将每个虚拟主机重定向到 https 但不重复配置。我在运行 Nginx 的同一个 vps 上有 4 个网站,我想将所有内容重定向到 https。 nginx 1 个回答 Voted Best Answer Jacob Evans 2017-10-26T15:41:04+08:002017-10-26T15:41:04+08:00 像这样... 将所有请求重定向到 https 在包罗万象的服务器示例中,可以看到奇怪的名称“_” server { listen 80; listen [::]:80; server_name _; access_log /var/log/nginx/www-301_access.log; error_log /var/log/nginx/www-301_error.log; location / { return 301 https://$host$request_uri; } } 重定向特定域名 server { listen 80; listen [::]:80; server_name example.com *.example.com example.org *.example.org; access_log /var/log/nginx/www-301_access.log; error_log /var/log/nginx/www-301_error.log; location / { return 301 https://$host$request_uri; } }
像这样...
将所有请求重定向到 https 在包罗万象的服务器示例中,可以看到奇怪的名称“_”
重定向特定域名