Remove extensions from url
Categories: htaccess, KnowledgeHow 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 [ Read More ]







