Published
- 1 min read
htaccess remove file extension
The solution for this is noted below
htaccess remove file extension
Solution
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]
Try other methods by searching on the site. That is if this doesn’t work