Skip to content

Instantly share code, notes, and snippets.

@joshuafredrickson
Created April 2, 2013 22:09
Show Gist options
  • Save joshuafredrickson/5296663 to your computer and use it in GitHub Desktop.
Save joshuafredrickson/5296663 to your computer and use it in GitHub Desktop.
.htaccess: Redirect from www.*
# Redirect from www.
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment