我需要重定向
到
我是用
做的RewriteEngine On
RewriteCond %{HTTP_HOST} ^(?:www\.)?example\.com$ [NC]
RewriteRule ^test/?$ https://user.example.com/test [NC,R=301,L]
现在我的问题是,如果我加载user.example.com/test或http://user.example.com/test
我收到了user.example.com/test但我需要https://user.example.com/test
如何修改或添加规则?
答案 0 :(得分:1)
您需要在规则中检查https。
RewriteEngine On
RewriteCond %{HTTPS} !^on [OR]
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$ [NC]
RewriteRule ^test/?$ https://user.example.com/test [NC,R=301,L]