Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有使用 Tuxlite 经验的人知道如何让 Perl 脚本工作吗?我在网上的教程中尝试了很多很多关于让 Perl 脚本与 Apache 一起工作但没有成功的方法。我不断收到 500 内部服务器错误。我允许 .htaccess 中的 .cgi 和 .pl 脚本。
我的脚本是一个 hello world 脚本
#!/usr/bin/perl print "Content-Type: text/html\n\n"; print "Hello World.";
我认为这不是 apache/web 问题。
在 shell 上尝试你的脚本并检查输出。(我假设它不在 shell 中运行。)
可能是您的 perl 未设置或缺少模块。
如果可行,请将您的脚本添加到您的问题中。