Die meisten Einträge bei mir im Apache-Log sehen folgendermaßen aus:

1
[Sun Oct 01 14:49:08 2006] [error] [client 85.216.XX.XX] File does not exist: /var/www/XXXX/html/Webspell/favicon.ico

Lässt sich einfach beheben, indem man die httpd.conf oder apache2.conf editiert und folgendes hinzufügt:

1
2
3
4
5
6
7
# Send an 404, if favicon.ico is not available
Redirect 404 /favicon.ico

# Don't bother sending the custom error page for favicon.ico
<location /favicon.ico>
   ErrorDocument 404 "No favicon.ico available"
</location>

Ähnlich kann man vermutlich auch den robots.txt Fehler entfernen.