I am trying to remove the .html extension on my website URL but nothing seems to work. <Website>. I have made a .htaccess file and put in the following:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]
AND
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]
but I find that nothing seems to work. Any ideas?