我在同一个 cgi-bin 文件夹中有两个 cgi 文件。一个复杂的 30000 行脚本可以正常工作,但是当涉及到这个简单的 cgi 脚本时:
#!/usr/bin/perl -w
print "Content-type: text/html\n\n";
print "<html><head>";
print "<title>CGI Test</title>";
print "</head>";
print "<body><h1>I just wrote a web page using Perl!</h1>";
print "</body></html>";
网页将返回 500 内部服务器错误...
为什么?:(
编辑:
好的,问题已在一台服务器上解决,cgi 工作正常。但是......
现在我正试图让 cgi 脚本在另一台服务器上工作,似乎无论我做什么,我都会不断收到“内部服务器错误”消息并且错误日志中没有任何内容。有什么建议么?