我在/ var/cgi-bin目錄有一個perl腳本的URL將正常執行:的Perl/CGI腳本找不到錯誤404的Apache2
本地主機/ cgi-bin目錄/ filename.pl
但當我通過html文件調用相同的文件時,loaclhost服務器返回404未找到的錯誤。
代碼: 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 [email protected]
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>
什麼是HTML文檔的URL?您可能需要'cgi-bin/filename.pl'或'/ cgi-bin/filename.pl',因爲您的HTML文件不在'cgi-bin'目錄中。 – simbabque
我希望這是一個學習練習。你不會拿這個信用卡號碼,是嗎? – simbabque
是的,這是一個學習練習。 Plz幫助! –