Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other hide .html with .htaccess not working – Please Help Reply To: hide .html with .htaccess not working – Please Help

#146324
paulw
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>