Googlebot-Mobile
, this is often confusing. For example, webmasters, intending to prohibit scanning and indexing a site for simple mobile phones with limited technical capabilities, by mistake prohibit scanning a site for all devices. Of course, all this has a negative effect on the traffic of the website.Googlebot-Mobile
will be replaced with Googlebot
with the addition of the word mobile in the user agent string. You can compare the differences below. Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25 (compatible;<b>Googlebot</b>/2.1; +http://www.google.com/bot.html)
Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html)
Googlebot-Mobile
for smartphones. The usual Googlebot
robot will have the same user agent, and the two remaining Googlebot-Mobile
search robots will still have the middle-class phone numbers in the user agent line. How it looks, see below. Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
SAMSUNG-SGH-E250/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 UP.Browser/6.2.3.3.c.1.101 (GUI) MMP/2.0 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html)
DoCoMo/2.0 N905i(c100;TB;W24H16) (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html)
Googlebot
for smartphones will follow the rules in robots.txt
, the robots meta tag and the HTTP headers for Googlebot
and not Googlebot-Mobile
. Here, for example, is a rule in robots.txt
that prohibits crawling a site both to a regular Googlebot
robot and to a new Googlebot
robot for smartphones: User-agent: Googlebot Disallow: /
robots.txt
prohibits scanning of Google search robots for simple mobile phones: User-agent: Googlebot-Mobile Disallow: /
Source: https://habr.com/ru/post/210118/
All Articles