Skip to content

Instantly share code, notes, and snippets.

@jonas8
Created January 16, 2012 11:55
Show Gist options
  • Select an option

  • Save jonas8/1620530 to your computer and use it in GitHub Desktop.

Select an option

Save jonas8/1620530 to your computer and use it in GitHub Desktop.
Force www in url
# force www in url
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
# END force www in url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment