perl在apache上部署

在第一家公司折腾Interchange和Perl的时候,对这个还挺熟的,而如今却忘得差不多了。今天调试SOAP,在原来有mod_perl的apache折腾不上去,不得不在另外一台机器上搞了新的apache。
配置方法也找到一片简单不错的文章。具体很多apache的参数以后有需要再研究吧。
Apache环境下 如何运行Perl写的cgi
  运行环境:Windows XP, WampServer, Active Perl 5.6

 

 安装完毕用记事本打开httpd.conf文件,

  1.搜索cgi-bin,找到
ScriptAlias /cgi-bin/ "d:/wamp/Apache2/cgi-bin/删除前面的#号,这是存放cgi文件的路径

  2. 搜索AddHandler  找到AddHandler  cgi-script. .cgi ,这是定义可执行cgi文件扩展名,可以把.cgi 改为 .pl 或加上”, .pl” ,成为“AddHandler cgi-script. .pl ,.cgi“这样两个后缀都可以用了。
 
  3.更改Options、Allow Override的参数为All。

  改完之后象这样:
#
# "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#

    AllowOverride all
    Options all
    Order allow,deny
    Allow from all

 
  4.建立文件 test.pl , 内容如下:
#!d:/Perl/bin/perl  
##   写成!d:/Perl/bin/perl.exe也可以
## 注意,如果没有第一行或写错,apache找不到perl解释器
## ,会出现500 Internal Server    
print "Content-type:text/html\n\n";
print "CGI执行成功!"
 
  在www目录下,建立一个html文件,内容如下:
CGI

  5. 重新启动apache server,然后在浏览器打开这个文件,提示 “CGI执行成功!”
请使用浏览器的分享功能分享到微信等