How can i remove .html extention from my website page and make them like example.com/featured intead of example.com/featured.html
How can i remove .html extention from my website page and make them like example.com/featured intead of example.com/featured.html
Please help!!!!
1. Create and store your files with the .html extension
2. Create your links without the .html extension
3. Add the following to your .htaccess file in public_html:
Code:RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}.html -f RewriteRule (.*) $1.html [L]
Nothing is always absolutely so.