in reply to defaulting to a perl script...

This is not really a Perl question, but a Web server question. How to set this up depends upon the Web server you use.

In a recent post, $code or die explained to set this up with IIS.

Cheers,
Ovid

Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.

  • Comment on (Ovid - OT) Re: defaulting to a perl script...

Replies are listed 'Best First'.
Re: Re: defaulting to a perl script...
by Kanji (Parson) on May 10, 2001 at 01:11 UTC

    And under Apache, I believe it is ...

      Options +ExecCGI
      DefaultType application/x-httpd-cgi

    (Although that makes the default document type a CGI, which can -- of course -- be a Perl script.)

        --k.