0

s

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

Jason Aller
  • 3,541
  • 28
  • 38
  • 38

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
  • 1,063
  • 4
  • 20
  • 41
Ando
  • 56
  • 2