DocumentRoot,ScriptAlias /cgi-bin/,ErrorLog等统统放在/home/www下面,然后将www目录的owner设置为你的普通用户,下面的目录一定要简历起来,否则无法启动apache2。
配置 好后就可以在/home/www/cgi/bin/下面写perl的cgi的程序了。顺便贴个hello,world的cgi。
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "
print "hello,world
";
foreach(keys %ENV){
print "$_ = $ENV{$_}\n
";
}
print "";