Skip to content

Instantly share code, notes, and snippets.

@kovtunos
Forked from agragregra/.htaccess
Last active September 29, 2017 14:18
Show Gist options
  • Save kovtunos/f568c7a3cb6b2092d093ef436e8d3448 to your computer and use it in GitHub Desktop.
Save kovtunos/f568c7a3cb6b2092d093ef436e8d3448 to your computer and use it in GitHub Desktop.
htaccess index.html and www redirect #htaccess
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} www.site.com [NC]
RewriteRule (.*) http://site.com/$1 [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.(htm(l)?|php)\ HTTP/
RewriteRule ^(([^/]+/)*)index\.(htm(l)?|php)$ http://site\.com/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment