Page 1 of 1

Simple .htaccess rewrite rules

Posted: Fri Oct 26, 2012 4:16 pm
by a24uall
How to rewrite all the .htm requests to .php
RewriteEngine on

RewriteCond %{THE_REQUEST} ^GET\s(.+)\.php [NC]
RewriteRule ^ %1.htm [R=301,L]

RewriteRule ^(.*)\.htm$ /$1.php [L,NC]