Skip to content

Instantly share code, notes, and snippets.

@lackneets
Created October 16, 2015 23:08
Show Gist options
  • Save lackneets/c1f9fd3e92286933fc0a to your computer and use it in GitHub Desktop.
Save lackneets/c1f9fd3e92286933fc0a to your computer and use it in GitHub Desktop.
Hide html extension .htaccess
RewriteEngine On
# To externally redirect /dir/foo.html to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.html [NC]
RewriteRule ^ %1 [R,L,NC]
## To internally redirect /dir/foo to /dir/foo.html
RewriteCond %{REQUEST_FILENAME}.html -f [NC]
RewriteRule ^ %{REQUEST_URI}.html [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment