如何在Windows上通过XAMPP运行Perl文件?

我是Perl语言的新手,我尝试像运行 PHP文件一样运行它,方法是将文件放在htdocs中,然后通过localhost访问它们.

下面是我创建的Perl文件,但无法在localhost上运行:

—– hello.pl —————

#!/usr/bin/perl
   print "Hello World.\n";
>安装xampp.在安装过程中,请确保已检查要安装的perl.
>我假设你已经在c:/ xampp目录中安装了xampp.
>现在转到c:/ xampp / htdocs目录.在htdocs目录里面创建一个perl目录.现在在perl目录中,创建一个名为hello.cgi的文件.
>在hello.cgi中编写以下代码段.

你好世界节目:

#!C:\xampp\perl\bin\perl.exe
# The above line is perl execution path in xampp
# The below line tells the browser,that this script will send html content.
# If you miss this line then it will show "malformed header from script" error.
print "Content-type: text/html\n\n";
print "Hello world."

现在从xampp控制面板启动apache.在浏览器的url中,输入localhost / perl / hello.cgi.

相关文章

(1)when you ping a computer from itsafe,the ping command should return the local IP address. (...
1、点击win菜单,点击设置图标 2、选择系统选项 3、选择应用与程序选项 4、拉到最下方,选择程序与功能...
目前一直直接往Windows 2008 R2 Server中复制文件(暂时还没有搭建ftp服务),突然不能复制了,于是百度...
windows下使用vscode配合xebug调试php脚本 要下载有php_xebug.dll扩展的版本,最新版可能没有这个扩展,p...
在控制面板的程序与功能里启用和关闭windows功能打开,适用于linux的windows子系统
效果演示 推荐一个非常牛的文档网站生成器:docsify 我通过这个工具,成功将码云上的个人学习笔记发布到...