我正在尝试应用一套htaccess规则。
我想将所有http请求重定向到https,并将所有请求都使用子域网店而不是www。
我看过this thread,但无法理解如何将其应用于我的案子。
目前我有
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^playmobilland.dk [NC]
RewriteRule ^(.*)$ https://webshop.playmobilland.dk/$1 [L,R=301]
但这不会将www请求路由到https。
如何添加重定向以将www请求也发送到https?
答案 0 :(得分:0)
尝试:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www.playmobilland.dk [NC]
RewriteRule ^(.*)$ https://webshop.playmobilland.dk/$1 [L,R=301]