Skip to content

Instantly share code, notes, and snippets.

@j26design
Last active December 20, 2015 21:26
Show Gist options
  • Save j26design/a7663653e26993ad5112 to your computer and use it in GitHub Desktop.
Save j26design/a7663653e26993ad5112 to your computer and use it in GitHub Desktop.
www .htaccess redirects
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect to non-www
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
# Redirect to www
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment