欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx报错

程序员文章站 2022-03-20 08:41:20
...

nginx报错

在写一个rpc例子,有些php页面可以访问,有些不行并出现这问题,求告知原因

错误日志 2016/07/21 13:35:41 [error] 9212#7620: *1 CreateFile() "D:nginxnginx-1.11.2nginx-1.11.2/html/favicon.ico" failed (2: The system cannot find the file specified), client: 127.0.0.1, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "localhost"

回复内容:

nginx报错

在写一个rpc例子,有些php页面可以访问,有些不行并出现这问题,求告知原因

错误日志 2016/07/21 13:35:41 [error] 9212#7620: *1 CreateFile() "D:nginxnginx-1.11.2nginx-1.11.2/html/favicon.ico" failed (2: The system cannot find the file specified), client: 127.0.0.1, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "localhost"

日志拿得不对,再找找,通过日志里的路径找。

从日志上看是不能找到favicon.ico 哎,

尝试在http.conf中添加配置试试

location = /favicon.ico {
  log_not_found off;
}
相关标签: php nginx