Skip to content

Instantly share code, notes, and snippets.

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