Skip to content

Instantly share code, notes, and snippets.

@ixzy24
Created June 3, 2012 13:24
Show Gist options
  • Save ixzy24/2863469 to your computer and use it in GitHub Desktop.
Save ixzy24/2863469 to your computer and use it in GitHub Desktop.
Force www on .htaccess
# 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