Skip to content

Instantly share code, notes, and snippets.

@jorgepedret
Created June 6, 2011 22:11
Show Gist options
  • Select an option

  • Save jorgepedret/1011227 to your computer and use it in GitHub Desktop.

Select an option

Save jorgepedret/1011227 to your computer and use it in GitHub Desktop.
Htaccess to Remove www in URL with
RewriteEngine On
RewriteCond %{HTTP_HOST} !^your-site.com$ [NC]
RewriteRule ^(.*)$ http://your-site.com/$1 [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment