friendus50
New Member
- Messages
- 25
- Reaction score
- 0
- Points
- 0
How can i remove .html extention from my website page and make them like example.com/featured intead of example.com/featured.html
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule (.*) $1.html [L]