Skip to content

Instantly share code, notes, and snippets.

@Jamiewarb
Created April 26, 2017 10:03
Show Gist options
  • Save Jamiewarb/63d1cba8d025e807c50f942268350e0b to your computer and use it in GitHub Desktop.
Save Jamiewarb/63d1cba8d025e807c50f942268350e0b to your computer and use it in GitHub Desktop.
Remove file extension with .htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment