Help for this page

Select Code to Download


  1. or download this
    <Location /perl>
      SetHandler perl-script
    ...
        $cgi->end_form,
        $cgi->end_html;
    }
    
  2. or download this
    PerlModule Apache2::Hello404
    <Location /hello404>
      SetHandler perl-script
    ...
      return Apache2::Const::OK;
    }
    1;