Skip to content

Instantly share code, notes, and snippets.

@therealkevinard
Created December 12, 2016 14:01
Show Gist options
  • Save therealkevinard/fcec561e51adcedac7b3dab8067a53a0 to your computer and use it in GitHub Desktop.
Save therealkevinard/fcec561e51adcedac7b3dab8067a53a0 to your computer and use it in GitHub Desktop.
Force www or no-www
# only use one of these.
#Force www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^site.com [NC]
RewriteRule ^(.*)$ http://www.site.com/$1 [L,R=301,NC]
#Force non-www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.site\.com [NC]
RewriteRule ^(.*)$ http://site.com/$1 [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment