以html形式调用时找不到简单的cgi“ Hello World”

时间:2019-10-27 12:33:43

标签: html netbeans cgi

我有这个简单的.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;
}
  • 出什么问题了?

1 个答案:

答案 0 :(得分:0)

第三张图片中的第一个标签为file:///cgi-bin/test?
这表明找不到的不是服务器上的CGI 但是是本地文件/cgi-bin/test

要解决此问题,您有两种选择:

  1. 将HTML文件放在CGI所在的服务器上,并以与CGI相同的站点对其进行访问。
  2. 将HTML形式的action/cgi-bin/test更改为http://192.168.1.18/cgi-bin/test