How to Remove the .php Extension from URLs
Options +FollowSymLinksOptions +IndexesRewriteEngine on Redirect requests to PHP files without the .php extension RewriteCond %{SCRIPT_FILENAME} !-dRewriteRule ^(+)$ $1.php Why Remove .php from URLs? Improves Readability – Shorter, cleaner URLs enhance…