Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 81580 invoked from network); 13 May 2009 05:58:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 13 May 2009 05:58:49 -0000 Received: (qmail 2506 invoked by uid 500); 13 May 2009 05:58:47 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 2451 invoked by uid 500); 13 May 2009 05:58:46 -0000 Mailing-List: contact modperl-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list modperl@perl.apache.org Received: (qmail 2443 invoked by uid 99); 13 May 2009 05:58:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 May 2009 05:58:46 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of dietbuddha@gmail.com designates 209.85.217.176 as permitted sender) Received: from [209.85.217.176] (HELO mail-gx0-f176.google.com) (209.85.217.176) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 May 2009 05:58:38 +0000 Received: by gxk24 with SMTP id 24so1480341gxk.10 for ; Tue, 12 May 2009 22:58:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=m3SpGX/J2erVTzvu9QL4DQVTafohLvb3l8NW3n3eoaE=; b=UZRb1XplvUPpoXqJ9cDp+BTMEDK0JPNB8Pc5zQouGRB97X6DLm67VwzTXOl+t3KXEf 7Nl3ef5FXKSFQ/NKCy+UzaJX0LTsbBaInk8GijVspMq2ypP9k7exCdnbd9rSq2h7e3DH HEnB49BbW6NcAKYlaUB2yUH7DynWeRqKqtW3w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=Rz0kIrdkyh+7jrXoAcChXeUzi9PuPjEOni+8SWL5KMOeM/rR7bWRAiqRNuS6Q2BFzH PqGul62Fal1CBHttGuyAjRbcesAQ1InvGu+V6mDKXX52DeEkCbkIpc63nx6WQG9gOH3+ 366AMNfh2mXpT8BmY+GI39IU5uV3C/lRfCd64= MIME-Version: 1.0 Received: by 10.150.230.1 with SMTP id c1mr328558ybh.256.1242194297454; Tue, 12 May 2009 22:58:17 -0700 (PDT) Date: Tue, 12 May 2009 22:58:17 -0700 Message-ID: <59a07310905122258n5f312967x820bee78739a0209@mail.gmail.com> Subject: executing PerlHandler after default_handler? From: William T To: modperl@perl.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Does anyone if it's possible to fall through the default_handler (decline?) to a PerlHandler? What I want to do is issue a redirect if the file that was requested is not on disk, and I don't want the extra stat due to an NFS mount. Of course I can serve up the file myself, but it seems as though I should be able to leverage the default_handler. -wjt