Skip to content

Instantly share code, notes, and snippets.

@sftsk
Created March 24, 2015 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sftsk/78853f903df807014441 to your computer and use it in GitHub Desktop.
Save sftsk/78853f903df807014441 to your computer and use it in GitHub Desktop.
www to non-www redirect .htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment