Skip to content

Instantly share code, notes, and snippets.

@stijnh92
Created July 19, 2018 14:51
Show Gist options
  • Save stijnh92/1822ee397aecd306e54e03c14febcbe2 to your computer and use it in GitHub Desktop.
Save stijnh92/1822ee397aecd306e54e03c14febcbe2 to your computer and use it in GitHub Desktop.
Redirect non-www to www url
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ %{HTTP:X-Forwarded-Proto}://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