2014-02-17 108 views
1

我想將子域重定向到不在同一個域中的另一個子域。如何使用htaccess將子域重定向到另一個子域

例子:

subdomain.mydomain.com - > subdomain.myotherdomain.com

我試過下面的代碼:

RewriteEngine On 
RewriteCond %{HTTP_HOST} ^subdomain.domain\.com$ [NC] 
RewriteRule ^(.*)$ http://subdomain.myotherdomain.com [R=301,L] 

似乎是的RewriteCond不工作...

你們能幫我嗎?

謝謝 達明

+0

在這些情況下沒有錯。 .htaccess可能未啓用。 – anubhava

回答

0

嘗試這種方式在你的子域的根htaccess的。

RewriteEngine On 
RewriteCond %{HTTP_HOST} ^subdomain [NC] 
RewriteRule ^(.*)$ http://subdomain.myotherdomain.com [R=301,L]