apache支持cgi的严重问题。

apache支持cgi的严重问题。

在配置apache支持cgi的时候老出问题,打开index.cgi却直接显示出了源代码,日志里面什么也没报,我的配置如下

<IfModule alias_module>
    Alias /cgi-bin/ "/home/kelz/bugzilla"
</IfModule>

<Directory "/home/kelz/bugzilla">
    AllowOverride all
    Options all
    Order allow,deny
    Allow from all
</Directory>

AddHandler cgi-script .cgi .pl

<Directory "/home/kelz/bugzilla">
AddHandler cgi-scipt .cgi .pl
Options +Indexes FollowSymLinks +ExecCGI
AllowOverride Limit
</Directory>

<IfModule dir_module>
    DirectoryIndex index.jsp index.htm index.html index.jspa index.cgi
</IfModule>


有高人知道怎么回事吗?
ScriptAlias NOT Alias
alvis  
我按照你说的做了,还是直接显示源码,另我打开.pl文件时,提示403.apache日志里面报
[Thu Nov 08 10:27:51 2007] [error] [client 192.168.1.7] client denied by server configuration: /home/kelz/bugzilla/whine.pl
403的问题解决了,是htaccess文件的问题,但是现在打开cgi和pl都直接显示源代码了,有高人知道怎么回事吗?
LoadModule cgi_module module/mod_cgi.so
没有加载CGI模块
问题解决了,是多加了一个
AddHandler cgi-script .cgi .pl
参数的问题,除掉就好了
AddHandler cgi-script .cgi .pl

我这里可以,你没装 perl ?