我正在尝试运行一个小的CGI脚本,但它在浏览器上显示脚本代码而不是HTML。 我正在运行Apache服务器,它是根据要求配置的。
DocumentRoot "/home/user/htdocs"
<Directory "/home/user/htdocs">
Options Indexes FollowSymLinks
Options +ExecCGI
AddHandler cgi-script .cgi .py
Order allow,deny
Allow from all
AllowOverride None
Require all granted
</Directory>
ScriptAlias /cgi-bin/ /home/user/cgi-bin/
我已将脚本放在cgi-bin目录中并赋予其可执行权限(chmod 755),但它仍无效。
我错过了什么?
答案 0 :(得分:0)
问题是您没有告诉Apache您可以在CGI文件夹中运行CGI脚本。基本上你的/home/user/cgi-bin
文件夹的设置,Debian在安装时默认使用它(我改变了路径):
<Directory "/home/user/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>