How to remove .html extension from URL?
Hello everyone,
I am doing on page SEO for one of my clients. All URLs are having .html extension at the end and I tried to omit that from .htaccess file
Here is the code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]
But it's not working. What to do?
|