Hi,
I tried to remove .html file extension from URL bar while usine .htaccess but I led to error 500.
The code I tried in .htaccess file:
How can I get rid of .html file extension in url bar?
Thanks!
I tried to remove .html file extension from URL bar while usine .htaccess but I led to error 500.
The code I tried in .htaccess file:
Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]
Thanks!