Skip to content

Instantly share code, notes, and snippets.

@rolandinsh
Created September 2, 2012 10:07
Show Gist options
  • Save rolandinsh/3596401 to your computer and use it in GitHub Desktop.
Save rolandinsh/3596401 to your computer and use it in GitHub Desktop.
.htaccess with/without www
RewriteEngine On
# with www
# RewriteCond %{HTTP_HOST} !^www\.
# RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
# without www
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