Skip to content

Instantly share code, notes, and snippets.

@kblomqvist
Created November 26, 2011 09:00
Show Gist options
  • Save kblomqvist/1395330 to your computer and use it in GitHub Desktop.
Save kblomqvist/1395330 to your computer and use it in GitHub Desktop.
Nice URLs for legacy .html site
AddCharset UTF-8 .html
Options All -Indexes
ServerSignature Off
ErrorDocument 404 /404.html
RewriteEngine On
RewriteRule $^ index.html [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-Za-z0-9-/]+)/?$ $1.html [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment