Hi I have completed some design work with multiple pages. Now when I export the design to file and upload to webserver, I noticed that all links and menus are ending with .html.
I came across a .htaccess setup that hides the extension but issue is all my links when you hover your mouse still showing .html even though the URL no longer shows that.
Is there a way to fix this on BSS?
Htaccess Code
RewriteEngine on
RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC]
RewriteRule ^ /%1 [NC,L,R]
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^ %{REQUEST_URI}.html [NC,L]