Created
October 10, 2016 10:46
-
-
Save agragregra/44a3306e6ffc52ed874c4307d242ffdb to your computer and use it in GitHub Desktop.
htaccess index.html & www redirect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteCond %{HTTP_HOST} . | |
RewriteCond %{HTTP_HOST} www.placeburg.com [NC] | |
RewriteRule (.*) http://placeburg.com/$1 [R=301,L] | |
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.(htm(l)?|php)\ HTTP/ | |
RewriteRule ^(([^/]+/)*)index\.(htm(l)?|php)$ http://placeburg\.com/$1 [R=301,L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment