You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Larry Toppi <la...@citrix.com> on 2004/05/20 17:06:20 UTC

Patch for AllowEncodedSlashes directive

I would like to be able to configure the AllowEncodedSlashes directive
within a <Location> section.  Currently this directive is only allowed in
the server config and virtual host sections.
 
Allowing this functionality will only need a slight modification to the
core.c file by or'ing RSRC_CONF with ACCESS_CONF as follows:
 
AP_INIT_FLAG("AllowEncodedSlashes", set_allow2f, NULL,
RSRC_CONF|ACCESS_CONF,
             "Allow URLs containing '/' encoded as '%2F'"),
 
Are there any objections to this patch being checked into the Apache tree?
 
Thanks,
Larry.