如何在nginx中摆脱下面所有的错误。我没有favicon.ico
2012/03/11 17:13:25 [error] 959#0: *116 open() "/usr/local/nginx/html/favicon.ico" failed (2: No such file or directory), client: 111.68.59.75, server: 127.0.0.1, request: "GET /favicon.ico HTTP/1.1" 我可以想象nginx conf中的某一行?
发布于 2017-08-08 16:05:26
对我来说最好的解决方案是:
location = /favicon.ico {
return 204;
access_log off;
log_not_found off;
}https://stackoverflow.com/questions/9657065
复制相似问题