我正在尝试创建.htaccess重定向,以便文件夹重定向到正确的页面。
例如...... http://example.com/contactus/help.html将重定向到http://example.com/contact-us/help.html或http://example.com/contactus到http://example.com/contact-us
答案 0 :(得分:4)
<IfModule mod_rewrite.c>
RewriteCond %{HTTP_HOST} ^example\.com/contactus/(.+)$ [NC]
RewriteRule ^ http://example\.com/contact-us/%1 [R=301,L]
</IfModule>