就单纯的测试程序 gcc test.c -o test.cgi
源程序如下
#include <stdio.h>
int main (int argc,char *argv[])
{
printf("Content-Type:text/plain;charset=utf-8\n\n");
printf("hello world! \n");
return 0;
}
乱码情况如下
乱码
CGI
C
------解决方案--------------------
明显的,cgi没有运行,返回的是cgi的文件本身而不是执行结果,没配置好.