Skip to content

Instantly share code, notes, and snippets.

@omgmog
Created August 28, 2013 16:04
Show Gist options
  • Save omgmog/6367779 to your computer and use it in GitHub Desktop.
Save omgmog/6367779 to your computer and use it in GitHub Desktop.
Redirect non-www to www with .htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
@omgmog
Copy link
Author

omgmog commented Aug 28, 2013

To save me having to Google this everytime I set up a new site!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment