#######
# Allow PHP/HTML pages to load without the filename extension
######
RewriteEngine On # Turns rewrite engine on (if allowed by server settings)
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html

