我正在尝试从在 Ubuntu 上运行的 apache2 中的虚拟主机文件执行 perl 脚本。我正在尝试将 URL 重定向到 perl 脚本,如下所示,但是,当我尝试http://xx.xx.xxx.xx/somefile.nff时出现禁止错误,我 已将 perl 脚本的权限设置为 777。谁能建议我还需要做什么才能使 perl 脚本运行?以下是 000-default 配置文件中的配置
DocumentRoot /var/www
ScriptAliasMatch /(.*) /var/www/perl/
PerlModule ModPerl::Registry
<Location /perl>
SetHandler perl-script
PerlHandler ModPerl::Registry
Options ExecCGI
allow from all
PerlSendHeader On
</Location>