Skip to content

Instantly share code, notes, and snippets.

@RiodeJaneiroo
Created November 7, 2018 21:57
Show Gist options
  • Save RiodeJaneiroo/bfa31fa529542e55f16b11bf846c01c2 to your computer and use it in GitHub Desktop.
Save RiodeJaneiroo/bfa31fa529542e55f16b11bf846c01c2 to your computer and use it in GitHub Desktop.
[Wordpress redirect www to non www] 301 Redirect from www to non www with https
RewriteCond %{HTTP_HOST} ^www\.(.*)
RewriteRule ^.*$ https://%1/$1 [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment