我在RewriteCond %{HTTP_HOST} ^mydoma.in [NC]
RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^medomain.com [NC]
RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^moodomain.com [NC]
RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^madomain.com [NC]
RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301]
中有4个域重定向,但它似乎没有效果。我这样做了吗?
+