htaccess and tidy url
Used this...
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
Pages connect both without the .html and with when typed into browser. However, when I use my nav menu links in the site.. they revert automatically to displaying the .html. How can I further modify to cover those internal menu links?
Thank you!
