0

s

I want to hide those .html extensions in the url. Is it possible? How can I hide them?

Jason Aller
  • 3,475
  • 28
  • 40
  • 37

1 Answers1

3

If you want to remove the .html extension from a html file for example yoursite.com/wallpaper.html to yoursite.com/wallpaper you have to add the following code inside the .htaccess file:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]
henriquehbr
  • 950
  • 3
  • 20
  • 38
Ando
  • 56
  • 2