我在使用NGINX时遇到了一些麻烦,我的目标是让NGINX的行为能够将所有子域名访问重定向到https:
server {
listen 80;
server_name *.myappdomain123.com;
#Redirect all nonssl requests to ssl.
return 301 https://$host$request_uri;
}
然而,问题是,即使是指向子域的域的请求也被重定向。示例:www.myhostedwebsite.com
指向(通过CNAME)myhostedwebsite.myappdomain123.com
,现在甚至此www.myhostedwebsite.com
域都会重定向到HTTPS,这不应该发生。这可能有什么问题?