我目前有一个安装了Apache::ASP并使用 Perl 的 Linux 服务器。
是否可以使用 Python(代替 Perl)在 Linux Apache 服务器上创建活动服务器页面?
我见过 IIS 添加Python或IronPython作为 .NET 来制作 ASP,那么使用 Apache 的 Linux 服务器呢?
现在我看到ActivePython可能有也可能没有这个选项。似乎在安装 Windows 发行版时,可以执行以下操作:
<%@ LANGUAGE = Python%>
<html>
<body>
<%
test = 'Hello World'
if (true):
Response.Write(test)
%>
</body>
</html>
但同样,这似乎仅适用于 Windows 版本。