Skip to content

Instantly share code, notes, and snippets.

@hermanomark
Created February 4, 2019 09:26
Show Gist options
  • Save hermanomark/55e4dc1f9aa52945b94cc2a043b8cd44 to your computer and use it in GitHub Desktop.
Save hermanomark/55e4dc1f9aa52945b94cc2a043b8cd44 to your computer and use it in GitHub Desktop.
Redirect non-www to www in .htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment