2016-03-31 128 views
2

是否有可能使用htaccess從一個域重定向到另一個?htaccess重定向整個url

RewriteRule http://www.google.com/old-route http://www.google.com/new-route [R=301,L] 
RewriteRule https://www.google.com/old-route https://www.google.com/new-route [R=301,L] 

如果不是,你將如何做一個項目的多個域的重定向?

+0

您在源網址和目標網址中顯示的是同一個「www.google.com」域 – anubhava

回答

2

對於一個域使用。

RewriteEngine On 
RewriteBase/

RewriteCond %{HTTP_HOST} ^www\.google\.com/old-route$ [NC] 
RewriteRule ^(.*)$ http://www.google.com/new-route [R=301,L]  

重定向您可以使用的所有內容。

Redirect 301/http://www.google.com/new-route