Skip to content

Instantly share code, notes, and snippets.

@gnilchee
Created November 4, 2014 11:31
Show Gist options
  • Save gnilchee/823803d7c5ae8917d37a to your computer and use it in GitHub Desktop.
Save gnilchee/823803d7c5ae8917d37a to your computer and use it in GitHub Desktop.
redirect only a certain naked domain to www, it will ignore subdomains
RewriteEngine ON
RewriteCond %{HTTP_HOST} ^example\.com
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment