Skip to content

Instantly share code, notes, and snippets.

@freretuc
Created May 22, 2011 12:23
Show Gist options
  • Save freretuc/985418 to your computer and use it in GitHub Desktop.
Save freretuc/985418 to your computer and use it in GitHub Desktop.
htaccess load file without ext
RewriteEngine On
#
# Internally rewrite extensionless URL to corresponding .php
# file unless the URL exists as a directory
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(([^/]+/)*[^.]+)$ $1.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment