Hide .php from URL in .htaccess

# This hides php from the url
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule ^(.*)$ $1\.php

Leave a Reply

Your email address will not be published.