On 08/09/2010 10:26 AM, Timothy Partee wrote:
    None of our rewrite rules should ever be operating on POST form
processor scripts, however it was suggested to us that mod_rewrite is
the likely culprit as it may be over-reactive and sometimes
accidentally nuking our POST data when it shouldn't. It was suggested
to disable mod_rewrite entirely for the CGI directories, not just add
a condition to exclude them since that according to this theory will
not save the data from getting nuked. Can mods be disabled altogether
on a per-directory basis? Thanks,

Yes, this is possible. Use either one of these:

<Location /cgi-bin/>
        RewriteEngine off
</Location>

<Directory /path/to/cgi-bin>
        RewriteEngine off
</Directory>

Joost

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
  "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to