Mobile app version of vmapp.org
Login or Join
Jennifer507

: Is it ok to block search engine bots from China and Russia on USA based eCommerce site? After blocking all traffic from China and Russia ( using Incapsula ) on an eCommerce application which

@Jennifer507

Posted in: #Performance #Seo #WebTraffic

After blocking all traffic from China and Russia ( using Incapsula ) on an eCommerce application which only ship into USA, I noticed a significant performance improvement. Is there any drawback of country wide crawlers blocking consider SEO? Am I losing anything?


Fig 1: Look at AWS cloud watch. CPU usages, web traffic significantly reduced.


Fig 2: Server response time incredibly improved - Newrelic.



Fig 3: App index jumped up - Newrelic.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Jennifer507

1 Comments

Sorted by latest first Latest Oldest Best

 

@Cofer257

Unless you get meaningful business from Yandex or Baidu then there's no disadvantage to blocking them.

However, they're known to ignore robots.txt. I'm unsure if this has changed in the last 4 years but you'll be looking at a server level block. Their user agents are easy to spot, a .htaccess example would be:

SetEnvIfNoCase User-agent “Baidu” spammer=yes
SetEnvIfNoCase User-agent “Yandex” spammer=yes

<Limit GET PUT POST>
order deny,allow
deny from env=spammer
</Limit>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme