>> Very odd. Anyone know if 'default-handler' isn't in MP2? > > > I can't say that it isn't, but maybe this will work: > > PerlTransHandler Apache2::Const::OK
I didn't take the time to read the entire thread, but based on the suggestion of using default-handler I figured the goal was something like this PerlTransHandler My::Foo <VirtualHost foo > # unset the above trans handler </VirtualHost> if that's the case then you want to return DECLINED instead of OK. OK means that translation was completed and the httpd default _should not run_, while DECLINED means translation has not yet completed and the httpd default _should run_. HTH --Geoff