Skip to content

Instantly share code, notes, and snippets.

@jorgepedret
Created June 6, 2011 22:14
Show Gist options
  • Select an option

  • Save jorgepedret/1011237 to your computer and use it in GitHub Desktop.

Select an option

Save jorgepedret/1011237 to your computer and use it in GitHub Desktop.
Remove file extensions from urls (htaccess)
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