i have a problem with my .htaccess file. I wan't to hide the file extention in my website ("website.com/index.html" to "website.com/index")
After research on internet, i found this solution for html file
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]
But I don't know why, it didn't work for me :/.
My .htaccess file is on the root of my website.