问题描述
我想将我的域和子域的所有 http 请求重定向到 https。例如,http://example.com 应转到 https://example.com,http://subdomain1.example.com 应转到 https://subdomain1.example.com 等。
我写了这段代码:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.+)\.example\.com$
RewriteRule ^(.*)$ https://%1.example.com$1 [R=302,L]
此代码仅重定向子域,而不重定向域。我应该对上面的代码做哪些更改,以便为两者开始路由。
解决方法
您可以使用以下内容将您的域重定向到 https
:
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,L,R=301]