Greetings!
I\'m trying to replace .php extensions with .html
So far I got:
RewriteRule ^(.*)\\.html $1.php
... it works n
RewriteEngine on RewriteBase / RewriteCond %{THE_REQUEST} (.*)\.php RewriteRule ^(.*)\.php $1.html [R=301,L] RewriteCond %{THE_REQUEST} (.*)\.html RewriteRule ^(.*)\.html $1.php [L]