我想重定向https://subdomain.example.com
到https://example.com
。以下是我正在尝试的操作:
server {
listen 443 ssl;
server_name subdomain.example.com;
return 301 $scheme://example.com$request_uri;
}
server {
listen 443;
server_name example.com;
ssl on;
ssl_certificate /path/to/crt;
ssl_certificate_key /path/to/key;
# ...
}
请求没有https://example.com
问题,但子域的 https 请求系统性超时。有什么想法吗?