动态.htaccess重定向

时间:2011-09-19 21:53:01

标签: .htaccess mod-rewrite

我正在尝试创建.htaccess重定向,以便文件夹重定向到正确的页面。

例如...... http://example.com/contactus/help.html将重定向到http://example.com/contact-us/help.htmlhttp://example.com/contactushttp://example.com/contact-us

1 个答案:

答案 0 :(得分:4)

<IfModule mod_rewrite.c>
  RewriteCond %{HTTP_HOST} ^example\.com/contactus/(.+)$ [NC]
  RewriteRule ^ http://example\.com/contact-us/%1 [R=301,L]
</IfModule>