Skip to content

Instantly share code, notes, and snippets.

@ntorga
Last active June 15, 2016 23:53
Show Gist options
  • Save ntorga/c95daffaa84960b79e1e to your computer and use it in GitHub Desktop.
Save ntorga/c95daffaa84960b79e1e to your computer and use it in GitHub Desktop.
<IfModule mod_rewrite.c>
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.html [NC]
RewriteRule ^ %1 [R,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^(.*?)/?$ $1.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment