0

有使用 Tuxlite 经验的人知道如何让 Perl 脚本工作吗?我在网上的教程中尝试了很多很多关于让 Perl 脚本与 Apache 一起工作但没有成功的方法。我不断收到 500 内部服务器错误。我允许 .htaccess 中的 .cgi 和 .pl 脚本。

我的脚本是一个 hello world 脚本

#!/usr/bin/perl print "Content-Type: text/html\n\n"; print "Hello World.";

4

1 回答 1

0

我认为这不是 apache/web 问题。

在 shell 上尝试你的脚本并检查输出。(我假设它不在 shell 中运行。)

可能是您的 perl 未设置或缺少模块。

如果可行,请将您的脚本添加到您的问题中。

于 2013-02-08T09:24:12.607 回答