使用URI将镜像URL重定向到具有相同URL的URI

时间:2015-07-30 23:32:38

标签: .htaccess url uri mirror

我使用 www.rosariodesign.com 作为主域,但 www.congresoead.com 作为镜像域。当有人使用镜像域进入时,必须将其重定向到镜像域/ congreso(congresoead.com - > congresoead.com/congreso)。仅在镜像域中。

我正在尝试在htaccess中使用此代码,但它正在替换域并保留URI:

RewriteCond %{HTTP_HOST} ^congresoead\.com [NC]
RewriteCond %{REQUEST_URI} ^/$
Rewriterule ^(.*)$ http://www.congresoead.com/congreso [L,R=301]

谢谢!

1 个答案:

答案 0 :(得分:0)

我明白了,www正在打断代码,这是有效的代码:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^(www\.)?congresoead\.com [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^ http://www.congresoead.com/congreso [L,R=301]