in reply to HTTP Header retrieval from Perl on Apache Server

Hi shug, Take a look at CGI::Application.
  • Comment on Re: HTTP Header retrieval from Perl on Apache Server

Replies are listed 'Best First'.
Re^2: HTTP Header retrieval from Perl on Apache Server
by mckyj57 (Initiate) on Sep 02, 2009 at 12:45 UTC
    It's going to be a lot faster and more efficient to use Apache to redirect the requests.

    That being said, the request method is always available in $ENV{REQUEST_METHOD}, or in the CGI module as $query->request_method().