如何将所有子域重定向到 http 而不是 https


How to redirect all the subdomain to http instead of https

htaccess 文件包含

RewriteCond %{HTTPS} off
# First rewrite to HTTPS:
# Don't put www. here. If it is already there it will be included, if not
# the subsequent rule will catch it.
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Now, rewrite any request to the wrong domain to use www.
RewriteCond %{HTTP_HOST} !^www'.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

此代码有助于从 重定向 URLexample.com 到 https://www.example.com

问题是,它还会将子域重定向到 https://www.sub.example.com

我只想让子域名重定向到 http://www.subdomain.example.com

您可以在规则中使用RewriteCond http->https将其限制为主域:

RewriteCond %{HTTP_HOST} ^(www'.)?example'.com$ [NC]
RewriteCond %{HTTPS} off
# First rewrite to HTTPS:
# Don't put www. here. If it is already there it will be included, if not
# the subsequent rule will catch it.
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Now, rewrite any request to the wrong domain to use www.
RewriteCond %{HTTP_HOST} !^www'.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]