Skip to content

Instantly share code, notes, and snippets.

@rahuldadhich
Created September 24, 2017 12:40
Show Gist options
  • Save rahuldadhich/72755b251c9673a527c0decb7fa1d14f to your computer and use it in GitHub Desktop.
Save rahuldadhich/72755b251c9673a527c0decb7fa1d14f to your computer and use it in GitHub Desktop.
htaccess redirect non-www to www
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourwebsite.com [NC]
RewriteRule ^(.*)$ http://www.yourwebsite.com/$1 [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment