我想将https://www.subdomain.domain.com重定向到https://subdomain.domain.com
我试过
RewriteEngine On
Options -MultiViews FollowSymLinks
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
但不受影响。请帮我找到解决方案
答案 0 :(得分:1)
你的重写规则没问题。把这一点放在任何重写声明的上面:
RewruteEngine on