How do I remove the .html from the address bar?

How do I remove the .html from the address bar? I alr tried looking at other threads but none worked. Any suggestions?

Have you tried adding this code to your .htaccess

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]


RewriteEngine on


RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC]
RewriteRule ^ /%1 [NC,L,R]

RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^ %{REQUEST_URI}.html [NC,L]

This topic was automatically closed after 23 hours. New replies are no longer allowed.