当前位置: 代码迷 >> CGI >> CGI 打印页面乱码解决思路
  详细解决方案

CGI 打印页面乱码解决思路

热度:622   发布时间:2014-02-23 23:10:47.0
CGI 打印页面乱码
就单纯的测试程序  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没有运行,返回的是cgi的文件本身而不是执行结果,没配置好.
  相关解决方案