アクセスランキングからgoogle botを除外

無駄なクエリーも防ぎたいので、

	my $ip=$ENV{'REMOTE_ADDR'};

	if( index($ip,"64.233.173.2")>=0 ) { exit; } # google bot
	if( index($ip,"64.68.90.1")>=0 ) { exit; } # google bot
	if( index($ip,"66.249.6")>=0 ) { exit; } # google bot
	if( index($ip,"66.249.7")>=0 ) { exit; } # google bot

こんな感じで除外。
なんでもネットのトラフィックの1割はgooglebotらしいですよ(^^;