禁止访问。CGI -apache

禁止访问。CGI -apache

我正在尝试使用 apache 运行 cgi 脚本,但是当我在浏览器中输入https://localhost/cgi-bin/(任意)它说“您无权访问此服务器上的 /cgi-bin/(任何内容)。我已添加

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Order allow,deny
    Allow from all
</Directory>

据我所知,还为文件设置了正确的权限。还有什么遗漏吗?

答案1

您可以在官方网站上找到信息: https://httpd.apache.org/docs/2.2/howto/cgi.html

相关内容