uniquesail 发表于 2006-10-30 12:26:13

linux下安装bugzilla后apache的配置问题

我在linux下安装了bugzilla后,进行apache的配置。

按照说明文档和一些网上搜索的信息,我在/etc/httpd/conf/httpd.conf中修改了一下几处:
   
         1)修改AddDefaultCharset ISO-8859-1
                为 AddDefaultCharset GB2312
         2)去掉了AddHandler cgi-script .cgi的注释
         3)添加Alias /bugzilla/ "/var/www/html/bugzilla/"
                  <Directory "/var/www/html/bugzilla">
                        Options ExecCGI Indexes
                        DirectoryIndex index.cgi
                        AllowOverride Limit
                        Order allow,deny
                        Allow from all
                  </Dircetory>

然后重起了服务。
在浏览器中输入http://我的ip地址/bugzilla/index.cgi
并没显示登录页面
在错误日志中提示一下三条错误:
Diectory index forbidden by Options directive:/var/www/html
Permission denied:exec of '/var/www/html/bugzilla/index.cgi' failed
Premature end of script headers:index.cgi

小女子实在不知如何解决,望高手给些解答或是提示解决思路!
页: [1]
查看完整版本: linux下安装bugzilla后apache的配置问题