如何使用htaccess将子域重定向到另一个子域

时间:2014-02-17 00:33:25

标签: .htaccess mod-rewrite redirect subdomain

我想将子域重定向到另一个不在同一域上的子域。

示例:

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

我尝试过以下代码:

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

RewriteCond似乎不起作用......

你们能帮助我吗?

谢谢你, 达明

1 个答案:

答案 0 :(得分:0)

在子域root htaccess中以这种方式尝试。

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