点确定后不跳转到设置成功页面(led-result.template),而是跳转到leds.cgi页面,如下:
#!/bin/sh
type=0
period=1
case $QUERY_STRING in
*ping*)
type=0
;;
*counter*)
type=1
;;
*stop*)
type=2
;;
esac
case $QUERY_STRING in
*slow*)
period=0.25
;;
*normal*)
period=0.125
;;
*fast*)
period=0.0625
;;
esac
/bin/echo $type $period > /tmp/led-control
echo "Content-type: text/html; charset=gb2312"
echo
/bin/cat led-result.template
exit 0
#解决方法:
打开root/etc/boa/boa.conf
将#AddType application/x-httpd-cgi cgi这行的注释去掉就可以正常跳转了。