301重定向具有不同域的多存储

时间:2014-05-09 22:29:31

标签: .htaccess

我已经设置了许多301重定向:

Redirect 301 /impressum http://mydomain.de/imprint

问题是,我正在运行一个magent多线圈。现在它重定向每个域,这导致404错误。 如何限制重定向到某个域?

Redirect 301 http://mydomain.de/impressum   http://mydomain.de/imprint

不起作用。

1 个答案:

答案 0 :(得分:1)

请尝试使用mod_rewrite,以便与主机名匹配:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?mydomain\.de$ [NC]
RewriteRule ^impressum(.*)$ http://mydomain.de/imprint$1 [L,R=301]