Skip to content

Instantly share code, notes, and snippets.

@codesprint
Created May 5, 2015 12:34
Show Gist options
  • Save codesprint/fb535359a36856e3b05e to your computer and use it in GitHub Desktop.
Save codesprint/fb535359a36856e3b05e to your computer and use it in GitHub Desktop.
Magento: Redirect non-www to www
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment