DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Replace File Extension With Apache Rewrite
// in this example *.html is replaced by *.php
// its a redirect [R] and it is is permanent (code is 301)
RewriteEngine On RewriteBase /the_directory RewriteRule ^(.*).html$ $1.php [R=301]





Comments
Snippets Manager replied on Thu, 2006/05/18 - 11:47pm
RedirectMatch perm ^/the_directory/(.+)\.html$ http://host.example/$1.php