- 论坛徽章:
- 0
|
根据error_log "attemp to invoke directory as script :/var/www/cgi-bin/"
查看了下源码:
if (r->finfo.filetype == 0)
return log_scripterror(r, conf, HTTP_NOT_FOUND, 0,
"script not found or unable to stat");
if (r->finfo.filetype == APR_DIR)
return log_scripterror(r, conf, HTTP_FORBIDDEN, 0,
"attempt to invoke directory as script");
if ((r->used_path_info == AP_REQ_REJECT_PATH_INFO) &&
r->path_info && *r->path_info)
{
/* default to accept */
return log_scripterror(r, conf, HTTP_NOT_FOUND, 0,
"AcceptPathInfo off disallows user's path");
}
上面的代码用于对请求的脚本的路径信息进行检查。需要请求的CGI脚本的信息保存在请求r->finfo中。如果r->finfo.filetype为零,则意味着没有指定CGI脚本的路径。如果指定的CGI脚本路径是目录名称,则这也是不允许的。 |
|