使用.htaccess将所有子域名从http重定向到https

时间:2016-07-13 11:06:14

标签: .htaccess

如何使用example.comhttp的所有子域名从https重定向到.htaccess

我搜索了Google,无法找到解决方案。

1 个答案:

答案 0 :(得分:4)

要将example.com的所有子域重定向到https,您可以使用:

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^((?!www\.)[^.]+)\.example\.com$
RewriteRule ^ https://%1.example.com%{REQUEST_URI} [NE,L,R]