Skip to content

Instantly share code, notes, and snippets.

@mucahitnezir
Last active April 11, 2017 14:11
Show Gist options
  • Save mucahitnezir/53cfaf62b86a86489abc25152faec376 to your computer and use it in GitHub Desktop.
Save mucahitnezir/53cfaf62b86a86489abc25152faec376 to your computer and use it in GitHub Desktop.
.htaccess commands for www redirect if url doesn't have www subdomain
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursitename\.com [NC]
RewriteRule ^(.*)$ http://www.yoursitename.com/$1 [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment