求助. .pl 无法解析一直提示下载

求助. .pl 无法解析一直提示下载

求助. .pl 无法解析一直提示下载
但把后缀改成.cgi就可以正常显示,在网上查了很久都没有办法解决,谁帮忙看一下,谢谢!
win2003 apache1.33+activeperl 5.8
在httpd.conf中已经设置了
#!c:/perl/bin/perl


ScriptAlias /cgi-bin/ "C:/Apache/cgi-bin/"
<Directory "C:/Apache/cgi-bin">
AllowOverride All
Options All
Order allow,deny
Allow from all
</Directory>

AddHandler cgi-script .pl .cgi
自己试了一下
原来的程序
#!c:/Perl/bin/Perl

print "Content-type: text/plain\n\n";
print "Hello World!\n";

现在改成
#!c:/Perl/bin/Perl

print "Content-type: text/plain\n\n";
print "<html>Hello World!\n</html>";
就行了