Remove extensions from url
Saturday, March 20th, 2010How to remove the .php extension from the URL ?
Ans : Add the following code in .htaccess file
======================
Options +FollowSymLinks
Options +Indexes
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.php [NC,L]
======================
How to remove the .html extension from the URL ?
Ans : Add the following code in .htaccess file
======================
Options +FollowSymLinks
Options +Indexes
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.html [NC,L]
======================