Home › Forums › Other › hide .html with .htaccess not working – Please Help › Reply To: hide .html with .htaccess not working – Please Help
August 9, 2013 at 10:28 pm
#146324
Participant
Hi All,
I can’t get this to work at all :-/
The pages load fine, I get no errors, but the .html extensions are still visible in the browser, any ideas?
Code:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteBase /
RewriteEngine on
RewriteCond %{REQUEST_fileNAME} !-d
RewriteCond %{REQUEST_fileNAME} !-f
RewriteRule ^(([^/]+/)*[^./]+)$ /$1.html [L]
</IfModule>