: check out the resources at http://perl.apache.org/ - there's : lots of good : information there :)
Heh, only found one document there concerning the TransHandler stuff .. : so, the general rule for PerlTransHandlers is to return : DECLINED unless you : set $r->filename. What I am trying to do is just test, to make sure it is working ok. So what I did is wrote the following snippit: sub handler { my $r = shift; return DECLINED; } That should still allow me to pull up my default content, correct? As of now it still gives me a 404 ..