未找到perl / cgi脚本错误404 apache2

时间:2016-11-17 12:09:49

标签: perl apache2 cgi http-status-code-404

我在/ var / cgi-bin目录中有一个perl脚本,它通常使用url执行:

本地主机/的cgi-bin / filename.pl

但是当我通过html文件调用同一个文件时,loaclhost服务器会返回404 not found错误。

代码: html文件:

<?xml version="1.0"encoding="utf-8"?>
<html>
            <head>
                            <title>light bulbsr form</title>
            </head>
            <body>

<form action="/cgi-bin/bulbs.pl" method="POST">

user name<input type="text" name="myname" size="30"/><br>

select the items:<br>

<input type="checkbox" name="b" value="2.39" /> four100 watt light bulbs  </br>
<input type="checkbox" name="b" value="4.29">  eight 100 watt light bulbs </br>
<input type="checkbox" name="b" value="3.95">  four 100 watt  long life bulbs </br>
<input type="checkbox" name="b" value="7.49"> eight100 watt  long life bulbs </br>

Select the mode of the payment:</br>

<input type ="radio" name="paymode" value="visa" checked="checked"/>Visa<br>
<input type ="radio" name="paymode" value="Master card"/>Master card<br>
<input type ="radio" name="paymode" value="Discover"/>Discover<br>

                            <input type="submit" value="submit order"/>
                            <input type="reset" value="Clear the form"/>
            </body>
</html>

perl文件:

#!/usr/bin/perl
use CGI qw(:standard);
use strict;


print header(),start_html ("Bill ");
print p("The total cost:0");br();
print end_html;

apache2 000-default.conf:

<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ScriptAlias /cgi-bin/ /var/cgi-bin/
     <Directory "/var/cgi-bin/">
             AllowOverride None
             Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
             Require all granted
     </Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

1 个答案:

答案 0 :(得分:0)

您的表单操作是&#34; filename.pl&#34;。这意味着Web服务器将寻找&#34; filename.pl&#34;在与包含表单的HTML页面相同的目录中。那不是它的所在。你可能想要完整的路径。

<form action="/cgi-bin/filename.pl">