如何使用example.com
将http
的所有子域名从https
重定向到.htaccess
?
我搜索了Google,无法找到解决方案。
答案 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]