Skip to content

Instantly share code, notes, and snippets.

@Lejdborg
Created May 9, 2011 05:31
Show Gist options
  • Save Lejdborg/962100 to your computer and use it in GitHub Desktop.
Save Lejdborg/962100 to your computer and use it in GitHub Desktop.
Rewrite non-www URL to www independent of the domain name (Apache)
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) http://www.%{SERVER_NAME}/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment