Created
February 8, 2018 04:05
-
-
Save blech75/5d44435d4b7ff8326da783893583e252 to your computer and use it in GitHub Desktop.
apache config for canonical redirect via mod_rewrite
This file contains 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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
# with www prefix, ignoring protocol | |
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] | |
RewriteRule ^(.*)$ https://%1/$1 [R=301,L] | |
# without www prefix, HTTP only | |
RewriteCond %{HTTPS} off | |
RewriteCond %{HTTP_HOST} ^(.*)$ [NC] | |
RewriteRule ^(.*)$ https://%1/$1 [R=301,L] | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment