如何将每个页面重定向到索引页面之外的另一个域。在我的情况下,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>
答案 0 :(得分:1)
使用此规则:
RewriteEngine on
RewriteRule !(^|/)index\.html http:/www.google.com [R=301,L,NC]