2

我想将我的旧域重定向到新域。实际上我的网站在 www_olddomain_pl/index.php 和英文版在 www_olddomain_com/index_en.php

我想做的事?

olddomain_pl -> www_new_pl
www_olddomain_pl -> www_new_pl
odldomain_com -> www_new_com
www_olddomain_com -> www_new_com

并从索引重定向到没有索引。我究竟有什么?

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.*)olddomain_pl(.*) [NC]
RewriteRule ^(.*)$ http://www_olddomain_pl/$1 [R=301,L]
RewriteRule ^index.php$ http://www_new_pl/ [R=301,L]

RewriteCond %{HTTP_HOST} ^(.*)olddomain_com(.*) [NC]
RewriteRule ^(.*)$ http://www_new_com/$1 [R=301,L]

我不知道该怎么办。

编辑: 还有一个: 实际上我的网站有两个版本——波兰语和英语。波兰语版在 olddomain_pl/index.php 英文版在 olddomain_pl/index_en.php

我想要:new_pl 下的波兰语版本 new_com 下的英语版本

所以我需要从没有 www 重定向到有 www 和从 index.php 或 index_en.php 到没有那个。

4

1 回答 1

3

您可以使用此规则:

RewriteEngine On

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index_en\.php [NC]
RewriteRule ^ http://www.live-dent.com/ [R=301,L,NC]

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index\.php [NC]
RewriteRule ^ / [R=301,L,NC]

RewriteCond %{HTTP_HOST} live-dent\.pl$ [NC]
RewriteRule ^ http://www.livedent.pl%{REQUEST_URI} [R=301,L]

编辑:根据评论:

RewriteCond %{HTTP_HOST} live-dent\.com\.pl$ [NC]
RewriteRule ^ http://www.livedent.pl%{REQUEST_URI} [R=301,L]
于 2013-10-23T11:38:37.570 回答