I'm using:
Code:
RedirectMatch 301 (.*)\.html$ http://www.website.com$1.php
to redirect all the .html files to the new .php files.
However, when I access the main page (
www.website.com ), it's redirecting me to
www.website.com/index.php (probably because it's trying to load index.html first)
Is there any way to avoid this and be able to access
www.website.com directly ?
Thanks