download cgic 2.05 http://www.boutell.com/cgic/#obtain
解压交叉编译
arm-none-linux-gnueabi-gcc -o t.cgi cgictest.c cgic.c cgic.h
板子目录创建 相关文件夹
/home/web/下
cgi-bin 文件夹 t.cgi
httpd.conf
index.html
传到板子
ftpget -u root -p 123456 192.168.0.30 /home/cgi-bin/t.cgi /home/zgh/cgi/t.cgi
chmod +x t.cgi
跳转文件
index.html
<html>
<head>
<meta http-equiv="refresh" content="0;URL=cgi-bin/t.cgi">
</head>
<body>
</body>
</html>
配置文件
httpd.conf
A:*
/:ac:ac
httpd服务开启
httpd -c /home/web/httpd.conf -h /home/web -p 8080
浏览器中
http://172.20.13.35:8080
或者直接打开cgi