我有这个简单的.html表单
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<form action="/cgi-bin/test">
<input type="text" placeholder="Your name here">
<input type="submit" value="Conferma">
</form>
</body>
</html>
应该在我的/usr/lib/cgi-bin
位置调用CGI程序。
不幸的是,出现错误:Error: your file was not found
即使该文件实际上位于我的文件夹中:Present in the directory
注意,CGI程序是用C编写的,非常简单:
#include <stdio.h>
int main() {
printf("Content-type:text/plain\n\n");
printf("Hello World!\n");
return 0;
}
[第三张图片中的第一个标签显示file:///cgi-bin/test?
。这表明找不到的不是服务器上的CGI但是是本地文件/cgi-bin/test
。