请教apache中cgi的配置问题,快崩溃了...

请教apache中cgi的配置问题,快崩溃了...

请教apache中cgi的配置问题,快崩溃了...
我在linux上用apache总也调不出来cgi为什么啊。

cgi内容

#!usr/bin/perl
print "Content-type: text/html\n\n";
print "Hello world!";

apache的配置文件中作了如下的配置

ScriptAlias /cgi-bin/ /var/www/cgi-bin/

AddHandler cgi-script .cgi .pl

<Directory "/var/www/cgi-bin">
Options +ExecCGI -Includes +Indexes
SetHandler cgi-script
AllowOverride All
Allow from all
</Directory>

文件权限修改了

chmod a+x hello.cgi

但是总是不能访问hello.cgi

错误日志里说

Premature end of script headers


[CCB]10[/CCB]

哪位高人帮忙啊
#!usr/bin/perl----改.
#!usr/bin/perl

改为

#!/usr/bin/perl
太感谢了,问题解决了![C.
太感谢了,问题解决了![CCB]1[/CCB]

郁闷,这个地方用perl执行的时候不报错,55555。
一个小tip:----可以先.
一个小tip:

可以先在命令行下执行一下你的程序,比如:

$ perl -W sample.cgi

这样也许比apache报的“Premature end of script headers”错误更有意义。
谢啦谢啦[CCB]2[/CCB]--.
谢啦谢啦[CCB]2[/CCB]

收下了,hohoho