仅将起始页面重定向到外部站点应保留所有子类别

时间:2014-04-30 12:02:13

标签: .htaccess redirect dns

我有一个问题,我需要将www.mydomain.com重定向到外部网址www.otherdomain.com,但我需要保留所有子页面和网址(不会被重定向)。

不应重定向示例www.mydomain.com/testpage。这可能吗?

如果有的话,任何人都可以指导我在htaccess文件中编写的内容,以便它能够正常工作。

1 个答案:

答案 0 :(得分:0)

以下.htaccess可以解决问题:

RewriteEngine on
RewriteCond %{HTTP_HOST} www.\mydomain\.com [NC]
RewriteCond %{REQUEST_URI} ^/$
Rewriterule ^(.*)$ http://www.otherdomain.com/ [L,R=302]

它只会重定向基本域(root),所有子文件夹和其他网址都将保留。

参考: https://serverfault.com/questions/58762/how-to-redirect-root-and-only-root-via-htaccess