Answer the question
In order to leave comments, you need to log in
Is it bad for search engines when there are several 301 redirects?
For example, like this:
site.ru/forum/ -> www.site.ru/forum/ (301)
www.site.ru/forum/ -> forum.site.ru/ (301)
Answer the question
In order to leave comments, you need to log in
It’s better then immediately site.ru/forum/ -> forum.site.ru/ (your K.O.)
I don’t presume to say exactly about search engines (although I subconsciously think that it affects negatively), but for you the harm is at least that that instead of one request you will get four.
that Yandex, that Google do just that:
$ wget -O /dev/null google.ru
--2011-03-02 16:12:14-- google.ru/
Resolving google.ru... 209.85.148.105, 209.85.148.99, 209.85.148.106, ...
Connecting to google.ru|209.85.148.105|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: www.google.ru/ [following]
--2011-03-02 16:12:14-- www.google.ru/
Resolving www.google.ru... 209.85.149.147, 209.85.149.104, 209.85.149.99, ...
Connecting to www.google.ru|209.85.149.147|:80... connected.
HTTP request sent, awaiting response... 200 OK
$ wget -O /dev/null yandex.ru
--2011-03-02 16:12:21-- yandex.ru/
Resolving yandex.ru... 87.250.250.11, 93.158.134.11, 77.88.21.11, ...
Connecting to yandex.ru|87.250.250.11|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: www.yandex.ru/ [following]
--2011-03-02 16:12:21-- www.yandex.ru/
Resolving www.yandex.ru... 87.250.250.3, 87.250.251.3, 77.88.21.3, ...
Connecting to www.yandex.ru|87.250.250.3|:80... connected.
HTTP request sent, awaiting response... 200 OK
For search engines, of course, this is always bad: you need to make two requests! But for you and for the project, in any case, it will be many times worse than for search engines.
A redirect is always bad, because Search engines do not consider such links good and consider the number of transitions, and sometimes the amount of response time from the server, and this will have a very, very bad effect on the result.
There are many prettier options for avoiding redirects that you have presented.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question