Skip to content

Instantly share code, notes, and snippets.

@Victa
Created May 30, 2011 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Victa/999213 to your computer and use it in GitHub Desktop.
Save Victa/999213 to your computer and use it in GitHub Desktop.
Remove file extensions from urls
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
# Replace html with your file extension, eg: php, htm, asp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment