使用htaccess将每个页面重定向到除索引页面之外的另一个域

时间:2013-11-20 12:34:19

标签: php regex apache .htaccess mod-rewrite

如何将每个页面重定向到索引页面之外的另一个域。在我的情况下,index.html,每隔一个页面mydomain / page2.html,mydomain.com/subfolder/subdolder/page.html等到www.google.com。

现在我有类似的东西,但随后一切都会被重定向。我想只留下未完成的index.html。

<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http:/www.google.com [R=301,L]
</IfModule>

1 个答案:

答案 0 :(得分:1)

使用此规则:

RewriteEngine on
RewriteRule !(^|/)index\.html http:/www.google.com [R=301,L,NC]