How to block a bot that is excessively visiting my site?

后端 未结 2 1134
醉梦人生
醉梦人生 2021-01-25 16:15

This bot doesn\'t respect nofollow noindex in robots.txt.

I have this in robots.txt:

User-agent: Msnbot
Disallow: /

User-Agent: Msnbot/2.0b         


        
2条回答
  •  猫巷女王i
    2021-01-25 16:57

    Based on Block by useragent or empty referer you could something like this in your .htaccess

    Options +FollowSymlinks  
    RewriteEngine On  
    RewriteBase /  
    SetEnvIfNoCase User-Agent "^Msnbot" ban_agent
    Deny from env=ban_agent
    

提交回复
热议问题