#!/usr/local/bin/perl
use warnings;
use strict;
print "Hello, world!\n";
这是我保存test.pl
为cgi-bin
.
这是代码,我用来在单独的 html 文档中运行脚本
<html>
<head>
<title>A Very Basic Example of an HTML page created by the CGI</title>
</head>
<body>
<script type="text/javascript" src="http://csvlife.com/cgi-bin/test.pl"></script>
</body>
</html>
我安装了 Perl。模块。我在我的 Hostgator 面板中验证了程序路径。可能是什么问题?