HTTP错误502.2 - 错误的网关

时间:2016-05-03 20:32:32

标签: perl iis error-handling iis-7.5

我正在尝试学习Perl所以我需要能够在本地测试它。我有IIS7.5,我已映射plcgi。但是当我在Chrome中测试它时,我会抛出此错误。

使用命令提示符时,它工作正常。所以我不明白我错过了什么或如何解决这个问题。我搜遍了谷歌,有人可以帮助我。

我的测试代码:

#!/usr/bin/perl
use warnings;
use strict;
use CGI;

my $test = new CGI();

print $test->header("text/html"),$test->start_html("PERL Test");
print $test->h1("PERL IS WORKING!");
print $test->end_html;

Browser Screen Shot

命令控制台吐出一个完美编程的HTML页面: enter image description here

0 个答案:

没有答案