这是我的计划:
[root@localhost cgi-bin]# locate first.pl
/home/Ram/Desktop/work/first.pl
/usr/local/apache2/cgi-bin/first.pl
[root@localhost cgi-bin]# cd /usr/local/apache2/cgi-bin/
[root@localhost cgi-bin]# vi first.pl
#!/usr/bin/perl -w
use warnings;
use warnings;
use CGI;
print "content-type: text/html\n\n";
print "<h2>Hello, World!</h2>\n";
我从我的浏览器中调用这样的脚本:
我没有得到输出,但是我收到了一个错误:
未找到
在此服务器上找不到请求的网址/usr/local/apache2/cgi-bin/first.pl。
本地主机端口80的Apache / 2.2.15(CentOS)服务器
我使用以下方式检查了Web浏览器Apache Web服务器是否正常工作:
我们展示欢迎页面。
如何解决此错误?
答案 0 :(得分:6)
在linux上安装apache2后,你基本上需要更改两个文件。
转到终端并设置以下配置:
sudo vim /etc/apache2/sites-enabled/000-default.conf
并添加以下内容:
<Files ~ "\.(pl|cgi)$">
SetHandler perl-script
PerlResponseHandler ModPerl::PerlRun
Options +ExecCGI
PerlSendHeader On
</Files>
sudo vim /etc/apache2/apache2.conf
并添加以下内容:
<Directory /var/www/cgi-bin/>
AddHandler cgi-script .cgi .pl
Options FollowSymLinks ExecCGI
AllowOverride None
</Directory>
添加这两个配置更改后,编写一个perl脚本,将其放在cgi-bin目录中,然后赋予它足够的权限(sudo chmod 755 <filename>
)
最后,重启apache2:sudo apache2ctl restart
答案 1 :(得分:3)
是的,上述过程有效,但简单的方法是:
CGI- sudo a2enmod cgi
最好的运气!!
答案 2 :(得分:0)
在您的网络配置(httpd.conf
或您的虚拟主机配置文件)中,您应该拥有以下片段:
ScriptAlias /cgi-bin/ /etc/local/apache2/cgi-bin/
<Directory "/etc/local/apache2/cgi-bin">
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
</Directory>
重启服务器,不要忘记chmod +x /usr/local/apache2/cgi-bin/first.pl
然后加载http://localhost/cgi-bin/first.pl
这假设您的配置中没有虚拟主机,或者您配置的虚拟主机是默认主机。如果需要,请参阅apache文档。