Skip to content

Instantly share code, notes, and snippets.

@sserbest
Created June 30, 2017 20:17
Show Gist options
  • Save sserbest/9f971c941ec499e06cb6712171378fcf to your computer and use it in GitHub Desktop.
Save sserbest/9f971c941ec499e06cb6712171378fcf to your computer and use it in GitHub Desktop.
.htaccess non-www to www
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(?!www\.)(.+) [NC]
RewriteRule ^(.*) http://www.%1/$1 [R=301,NE,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment