我的问题很简单,我该如何重定向这种网址:
www.domain.com/?page_id=25&ID=46 至 : www.anotherdomain.com /
当我尝试这个时:
RewriteCond %{HTTP_HOST} ^domain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.domain\.com$
RewriteRule ^/?$ "http\:anotherdomain.com\" [R=301,L]
网址被重定向到http:anotherdomain.com \?page_id = 25& ID = 46
我需要的另一个重定向是重定向:
blog1.domain.com到anotherdomain.com知道有多个块。
感谢您的帮助, 最好的问候。
答案 0 :(得分:0)
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www|blog1)\.domain\.com$ [NC]
RewriteRule ^ http://www.anotherdomain.com/? [R=301,L]