Apache-Httpd

無法從 apache 訪問 bugzilla

  • June 1, 2016

我安裝了 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.

問題.htaccess在於 bugzilla 目錄中的文件。

將以下程式碼添加到文件中並重新啟動 apache,

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

現在它工作正常。

引用自:https://unix.stackexchange.com/questions/286639