Disallow: /biz/outlook-autumn-market-fundamental-catwalk-flimsy-roost-legibility-individualism-grocer-predestination-0
And over and over ten times. Trying to see if the bots ignore robots.txt I guess?Who exactly is crawling my site?
21–30 of 80 posts
Re: Who exactly is crawling my site?
#22What about a system like this: You crawl your own site every day (or generate the same content into files) Put the content into files with file names representing the URLs (or HAR format?) Zip em up Put them on bittorrent Tell the search engines to look there for your content Wouldn't that save everyone a lot of work?
Re: Who exactly is crawling my site?
#23Crawlers and spambots are the scourge of medium to small websites. I run a small wiki that gets just a few thousand human hits a day. But according to the server logs 90% of server hits are crawlers and spambots, so I'm using 10 times the resources I really need to serve customers. I finally resorted to blocking entire data centers and companies that crawl constantly but send no traffic. I feel like search engines sh…
Chicken and egg. Should they 1. crawl you first, or 2. send you traffic first? If 1, how long until they should either send traffic or stop, and if 2, how?
Re: Who exactly is crawling my site?
#24So, you have a problem with Ahrefs, too? But what about Ezooms? That's a very annoying bot for my site, drives zero traffic. Also, what about Cyveillance? They show up with a lying User-Agent field ("Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)"), but run Linux, and they ignore robots.txt by not even asking for it. I actually blocked Ahrefs, Ezooms, Yandex and Cyveillance by IP address range in httpd.conf for a…
Does Ahrefs not respect robots.txt? Their website says they do, https://ahrefs.com/robot/index.php
Re: Who exactly is crawling my site?
#25Earlier quoted context omitted.
Chicken and egg. Should they 1. crawl you first, or 2. send you traffic first? If 1, how long until they should either send traffic or stop, and if 2, how?
Could they not run webhooks where my site can call to them when to do a full or partial crawl? PubSub for web crawling, if you will.
Re: Who exactly is crawling my site?
#26At the bottom of the page he mentions Yelp, and looking at their robots.txt they have this weird stuff for each of the allowed bots: Disallow: /biz/outlook-autumn-market-fundamental-catwalk-flimsy-roost-legibility-individualism-grocer-predestination-0 And over and over ten times. Trying to see if the bots ignore robots.txt I guess?
Re: Who exactly is crawling my site?
#27Crawlers and spambots are the scourge of medium to small websites. I run a small wiki that gets just a few thousand human hits a day. But according to the server logs 90% of server hits are crawlers and spambots, so I'm using 10 times the resources I really need to serve customers. I finally resorted to blocking entire data centers and companies that crawl constantly but send no traffic. I feel like search engines sh…
Chicken and egg. Should they 1. crawl you first, or 2. send you traffic first? If 1, how long until they should either send traffic or stop, and if 2, how?
Re: Who exactly is crawling my site?
#28It wouldn't be hard to stop (404 nonsensical years & disable the previous / next links that will get them there), but it is amusing that Googlebot has clicked on that "next month" link over 60000 times...
Re: Who exactly is crawling my site?
#29"I've decided to block all crawlers to the site other than Google or Bing" And this is why I find people that respond to privacy complaints about Google with "if you want to switch search engines no-one is stopping you" frustrating. Additionally, I would like to point out that according to those numbers, there are ~41,000 (418,814 - 199,725 - 40,359 - 36,340 - 33,893 - 26,325 - 13,458 - 10,657 - 6,109 - 5,993 - 4,959…
This is a fair point, however blacklisting isn't necessarily a perfect solution either. It would require continuous manual effort in going through the logs and blocking bad bots, and if some new bot were to misbehave and crawl too aggressively, blacklisting would only help after the fact. I do think I did make a mistake though. To your point, I shouldn't block crawlers that both behave and are attempting to help my s…
> if some new bot were to misbehave and crawl too aggressively, blacklisting would only help after the fact.
In that case, don't blacklist all bots, simply add a crawl delay to any bots that you haven't specifically allowed:
User-agent: * Crawl-delay: 10
This allows minor bots to continue to crawl the site, while cutting back on bandwidth costs for the couple of ones that are being overly aggressive.
Re: Who exactly is crawling my site?
#30What about a system like this: You crawl your own site every day (or generate the same content into files) Put the content into files with file names representing the URLs (or HAR format?) Zip em up Put them on bittorrent Tell the search engines to look there for your content Wouldn't that save everyone a lot of work?