2.1. AcceptRedirect *global*

Enables processing of HTTP server redirects, i.e. when handling ErrorDocument for Apache. For instance, if you have in Apache httpd.conf:

        ## Setting in httpd.conf
        ErrorDocument 404 /cgi-bin/foundation

At that point, a request for /somedir/index.html that is not found will be equivalent to /cgi-bin/foundation/somedir/index.html and will be indistinguishable from the Apache-served page by the client.

        AcceptRedirect  Yes

A Yes/No directive, default No.

Caution should be taken not to enable the ErrorDocument to redirect to Interchange globally -- it would render you subject to a denial-of-service attack at random URLs, i.e. a flood of MS Windows "Code Red" attacks. It is recommended that you enable it only for specific directories, as Apache or another HTTP server will stand up much better under such a flood.