我试图将一个旧域重定向到它的新域,但是我需要制定一些规则,到目前为止我还没有设法让它完全正确。
旧域,例如 www.old-domain.com 在英国城镇之后有数百个文件夹名称,如下所示:
www.old-domain.com/sheffield/ www.old-domain.com/london/ www.old-domain.com/essex/
这些文件夹中的每一个都包含一个 index.html 文件和可能的其他目录和文件。
我需要以这样的方式将它们重定向到新域,以便旧域/城镇映射到新域/城镇但旧域/城镇/index.html 不会将 index.html 放在新域端但是如果路径之后town 是 index.html 以外的任何东西,可以在新域上重定向到它。
抱歉,这不是最容易解释的,也不是最容易阅读和理解的,我敢肯定。
www.old-domain.com/sheffield => www.new-domain.com/sheffield
www.old-domain.com/sheffield/ => www.new-domain.com/sheffield/
www.old-domain.com/sheffield/index.html => www.new-domain.com/sheffield/
www.old-domain.com/sheffield/main.html => www.new-domain.com/sheffield/main.html
www.old-domain.com/sheffield/innerFolder/ => www.new-domain.com/sheffield/innerFolder
www.old-domain.com/sheffield/innerFolder/file.php => www.new-domain.com/sheffield/innerFolder/file.php
上面粗体的两个我设法通过这个来工作:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^sheffield/(.*)$ http://www.new-domain.com/sheffield/$1 [R=301,L]
但是,我真的很难让 old-domain.com/sheffield/index.html 不把 .index.html 放在新域上。
在我把头发拉出来盯着 mod rewrite 教程再看几个小时之前,任何人都可以对此有所了解吗?