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


Messages In This Thread
www redirect to no www - by Michelle - 12-18-2013, 03:09 AM
RE: www redirect to no www - by Falk - 12-27-2013, 10:10 PM
RE: www redirect to no www - by john.89.oning - 01-16-2016, 05:14 AM
RE: www redirect to no www - by Jonzz - 11-21-2016, 11:24 AM

Forum Jump:


Users browsing this thread: 17 Guest(s)