Re: [users@httpd] mod_substitute not firing with HTTP Status Code 201?

2018-09-17 Thread Nick Kew
> On 17 Sep 2018, at 10:09, Maarten Boekhold wrote: > > Hi, > > Careful reading of the mod_filter documentation pointed me to the issue: > mod_filter by default only filters documents with Status Code 200. You need > to "SetEnv filter-errordocs" to make it work with other status codes...

Re: [users@httpd] mod_substitute not firing with HTTP Status Code 201?

2018-09-17 Thread Maarten Boekhold
Hi, Careful reading of the mod_filter documentation pointed me to the issue: mod_filter by default only filters documents with Status Code 200. You need to "SetEnv filter-errordocs" to make it work with other status codes... Maarten On 09/17/2018 12:14 PM, Maarten Boekhold wrote: Hi, I

[users@httpd] mod_substitute not firing with HTTP Status Code 201?

2018-09-17 Thread Maarten Boekhold
Hi, I have a Substitute statement defined for a specific Location as:     FilterChain SUBST     ProxyPass stuff     Substitute s|fromText|toText|n A specific request that is handled by this Location returns with HTTP Status Code 201. The substitution does **not** take place. Another