我想将旧域重定向到新域。实际上我的网站在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重定向到没有。
答案 0 :(得分: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]