如何将子域名重定向到主域名?例如,我想使用htaccess 301重定向将media.www.example.com重定向到www.example.com。
试过这个,但它不起作用:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^media.www.example.com$
RewriteRule ^(.*)$ http://www.example.com/ [R=301,L]
答案 0 :(得分:1)
使用这种方式
RewriteEngine on
RewriteCond %{HTTP_HOST} ^http://shop.example.com/test.htm[NC]
RewriteRule ^(.*)$ http://www.example.com/test.htm[L,R=301,NC]
所以你的代码就是那样......
RewriteEngine on
RewriteCond %{HTTP_HOST} ^http://www.media.example.com$
RewriteRule ^(.*)$ http://www.example.com/ [R=301,L]