Skip to content

Instantly share code, notes, and snippets.

@Dezzign
Forked from theperrygroup/.htaccess
Created June 1, 2019 09:27
Show Gist options
  • Save Dezzign/3bfd96de65ffdc9acda20764f1854163 to your computer and use it in GitHub Desktop.
Save Dezzign/3bfd96de65ffdc9acda20764f1854163 to your computer and use it in GitHub Desktop.
Force .html extension with .htaccess
# This code must be placed in the .htaccess
# file that is located in the root directory
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^.]+?)/?$ /$1.html [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment