我的 Apache 配置有误。我的脚本不想被执行,浏览器也不想尝试将其作为文件下载。
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName president.com
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /var/www/cgi/
<Directory /var/www/cgi/>
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Require all granted
AddHandler cgi-script .cgi .pl
</Directory>
- 脚本归 www-data:www-data 所有,权限为 755,可以执行 (+x)。
- Shebang 例如#!/usr/bin/perl。
- 错误日志为空。
如何解决这个问题?我需要执行我的脚本
答案1
问题解决了!
我删除所有内容Require all granted
(仅适用于 Apacvhe 2.4+)并粘贴:
Order allow,deny
allow from all
我也移动AddHandler cgi-script .cgi .pl
到 DocumentRoot 目录描述