新手初学Apache服务配置遇到的CGI问题请教大家指点!
这是我的C语言写的CGI程序,如下:
#include <stdio.h>
int main(void)
{
printf("Contenttype:text/html\n\n");
printf("<html>");
printf("<head><title>An HTML Page From a CGI</title></head>");
printf("<body><br>");
printf("<h2> This is my first CGI program !</h2>");
printf("</body>");
printf("</html>");
return 0;
}
编译生成test可执行文件,并把它放到根下的、cgi-bin目录下,在浏览器敲地址,在浏览器中出现了这样的效果,如下:
<html>
<head><title>An HTML Page From a CGI</title></head>
<body><br>
<h2> This is my first CGI program !</h2>
<hr><p>
</body>
</html>
为什么浏览器显示的时候连标签也输出了啊?是不是我的配置文件有问题啊,,请大家帮我找找问题,谢谢了:)