Skip to content

Instantly share code, notes, and snippets.

@Remiii
Created April 27, 2013 16:39
Show Gist options
  • Save Remiii/5473719 to your computer and use it in GitHub Desktop.
Save Remiii/5473719 to your computer and use it in GitHub Desktop.
Redirect non-www to www with Apache .htaccess
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment