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


Redirect every page to another domain besides index page with htaccess

如何将每个页面重定向到索引页面之外的另一个域。在我的例子中,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>

使用此规则:

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