Skip to content

Instantly share code, notes, and snippets.

@bstonedev
Last active May 14, 2020 22:13
Show Gist options
  • Save bstonedev/136302835a87172a2831b64c7dc41541 to your computer and use it in GitHub Desktop.
Save bstonedev/136302835a87172a2831b64c7dc41541 to your computer and use it in GitHub Desktop.
My fav 'redirect www URLs to non-www https URLs' .htaccess snippet
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment