0

所以我们有一个开发站点,例如:test.domain.com/dev/filename.html 并且它已被 Google 索引,所以我需要将它们重定向到 www.newdomain.com/filename.html 但不仅仅是文件,还有文件夹/文件之类的。

test.domain.com/dev/example/filename.html

或 www.newdomain.com/example/example/filename.html

www.newdomain.com/filename.html

请注意,测试域上的 /dev/ 文件夹不能在重定向上推送?

有人对此有任何想法吗?

我试过了:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !test.domain.co.uk/dev/$ [NC]
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]

经过一些测试,这重定向到http://www.newdomain.com/dev/page.html,我需要删除 /dev/ .....

和一些其他的选择,同时四处寻找,但还没有满足要求。

提前致谢

4

1 回答 1

1

你还需要 RewriteCond 所以试试:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^test.domain.com [NC]
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]
于 2012-10-22T13:13:33.350 回答