.htaccess将子域重定向到另一个域

时间:2015-05-31 02:31:13

标签: .htaccess mod-rewrite redirect

我想将 .domain.com / 重定向到 .otherdomain.com / 和domain.com/*到otherdomain.com/*,它位于另一台服务器上。

另外,我希望地址栏更改为新域

例如:hi.domain.com/there - > hi.otherdomain.com/there

我找到了一些.htaccess的例子,但不能同时制定这两个规则。

我该怎么做?

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以在根目录中的.htaccess中尝试此操作。

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.+\.)?domain\.com$
RewriteRule ^(.*)$ http://%1otherdomain.com/$1 [R=301,L]