www redirect to no www

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
#1
To minimize load times (save a DNS lookup) do this

Redirecting www to non www or vice versa.

Redirect from non-www to www

RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]


Redirect from www to non-www

RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]



Or the HTTPS version:

Redirect from www to non-www

RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]



Redirect from non-www to www

RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]



Use the first if you decided your domain is http://www.yourdomain.com and the second if you decided your domain is http://yourdomain.com

And in WordPress settings set the url according to your decision.

It doesnt matter which yoy choose, but it maters that you make a choice!
Reply
#1
To minimize load times (save a DNS lookup) do this

Redirecting www to non www or vice versa.

Redirect from non-www to www

RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]


Redirect from www to non-www

RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]



Or the HTTPS version:

Redirect from www to non-www

RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]



Redirect from non-www to www

RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]



Use the first if you decided your domain is http://www.yourdomain.com and the second if you decided your domain is http://yourdomain.com

And in WordPress settings set the url according to your decision.

It doesnt matter which yoy choose, but it maters that you make a choice!
Reply
#2
Thanks ! I have tried a number of different things but this must be the fastes way to redirect :-)
Reply
#2
Thanks ! I have tried a number of different things but this must be the fastes way to redirect :-)
Reply
#3
Thanks for the instructions! Really useful Smile
Reply
#3
Thanks for the instructions! Really useful Smile
Reply
#4
Thanks for sharing this. I was also looking for a good way to do this. Really useful.
Reply
#4
Thanks for sharing this. I was also looking for a good way to do this. Really useful.
Reply


Forum Jump:


Users browsing this thread: 17 Guest(s)