无法从 apache 访问 bugzilla

无法从 apache 访问 bugzilla

我安装了 bugzilla 并添加了以下代码以httpd.conf从浏览器访问它

<Directory /var/www/html/bugzilla>
  AddHandler cgi-script .cgi
  Options +Indexes +ExecCGI
  DirectoryIndex index.cgi
  AllowOverride Limit
</Directory>

但如果我尝试从浏览器访问它,我会收到以下错误

The server encountered an internal error or misconfiguration and was unable to complete your request.

答案1

问题出.htaccess在 bugzilla 目录中的文件。

将以下代码添加到文件中并重新启动apache,

<FilesMatch (\.pm|\.pl|\.tmpl|localconfig.*)$>
    Deny from all
</FilesMatch>

现在工作正常。

相关内容