当我输入以下代码时,我想阻止所有标识为机器人但允许 Googlebot 的 http_user_agents:
map $http_user_agent $bad_bot {
default 1;
~*^Lynx 0; # Let Lynx go through
~*^google );
libwww-perl 1;
~(?i)(libwww|Wget|LWP::Simple|BBBike|java|crawl|spider|bot) 1;
}
但是,这甚至阻止了对 googlebot 的访问。