On 01/07/07, Apache Wiki <[EMAIL PROTECTED]> wrote:
The following page has been changed by MarkWatts:
http://wiki.apache.org/httpd/ScratchPad/EnablingCGI

New page:
= Enabling CGI Scripts (mod_cgi) =

Here are three different ways to allow CGI script execution.

[snip]

{{{
      Alias /cgi-bin /var/www/cgi-bin/
      <Directory /var/www/cgi-bin>
          AddType application/x-httpd-cgi .cgi
          Options +ExecCGI
          Order Allow,Deny
          Allow from all
      </Directory>
}}}

No! This method should have died a long long time ago (in fact it did,
just the PHP guys don't seem to have noticed.) The fact that it still
works isn't reason to document it, in the same way Options

If you want a third way, try RewriteRule's [H] flag in 2.2, set to
cgi-script :-)

--
noodl

Reply via email to