Skip to content

Instantly share code, notes, and snippets.

@blech75
Created February 8, 2018 04:05
Show Gist options
  • Save blech75/5d44435d4b7ff8326da783893583e252 to your computer and use it in GitHub Desktop.
Save blech75/5d44435d4b7ff8326da783893583e252 to your computer and use it in GitHub Desktop.
apache config for canonical redirect via mod_rewrite
<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