Skip to content

Instantly share code, notes, and snippets.

@rbtbr
Created October 15, 2010 12:06
Show Gist options
  • Save rbtbr/628090 to your computer and use it in GitHub Desktop.
Save rbtbr/628090 to your computer and use it in GitHub Desktop.
mod_rewrite Rewrite URL without www
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.domain.tld$
RewriteRule ^(.*)$ http://www.domain.tld/$1 [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment