将几个域重定向到.htaccess中的一个域

时间:2010-09-21 13:13:24

标签: url .htaccess redirect

我想在我的.htaccess中添加一些代码,将几个不同的域重定向到一个域。我见过一些代码可以为一个域执行此操作,例如:

RewriteCond %{HTTP_HOST} ^www\.example\.net  
RewriteRule (.*) http://www.example.com/$1 [R=permanent,QSA,L]

但是,将多个域重定向到单个域的最佳方法是什么?

1 个答案:

答案 0 :(得分:3)

仅在域名您要重定向到的域时重定向:

RewriteCond %{HTTP_HOST} !(^www\.example\.com$)  
RewriteRule (.*) http://www.example.com/$1 [R=permanent,QSA,L]