Greetings!
I\'m trying to replace .php extensions with .html
So far I got:
RewriteRule ^(.*)\\.html $1.php
... it works n
Give this a try:
RewriteEngine on RewriteBase / RewriteRule ^(.*)\.html$ $1.php [L]