Re: Running a mod_perl script at the domain root

2008-02-11 Thread Matthew Tylee Atkinson
On Sun, 2008-02-10 at 16:47 -0500, Adam Prime wrote: > 1) You can modify TestSite to return DECLINED for any request that you > want to be handled by the filesystem rather than your handler. ie > . . . > > 2) If you've got all your CSS and images in directories dedicated to > those tasks, then

Re: Running a mod_perl script at the domain root

2008-02-10 Thread Adam Prime
There are a couple of ways you can tackle this sort of thing. 1) You can modify TestSite to return DECLINED for any request that you want to be handled by the filesystem rather than your handler. ie if $r->uri =~ m|\css$| { return Apache2::Const::DECLINED; } 2) If you've got all your CSS