floatleft
floatleft

Reputation: 6541

Dynamic .htaccess redirect

I'm trying to create an .htaccess redirect so that an folder will redirect to its proper page.

For example... http://example.com/contactus/help.html will redirect to http://example.com/contact-us/help.html or http://example.com/contactus to http://example.com/contact-us

Upvotes: 2

Views: 162

Answers (1)

Alex
Alex

Reputation: 9471

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

Upvotes: 4

Related Questions