Hi Bryan,
On Mon, Feb 28, 2011 at 11:34:53AM -0800, Bryan Talbot wrote:
> I'd like to find a work-around to this issue until it can be fixed.
> Is it possible to add a dummy query string parameter in a rewrite rule
> which would then cause the balance url_param to work with a POST?
>
> I'm not seeing how to use reqrep to alter a POST uri by appending a
> '&a=1' parameter to the end since there is no support for substitution
> groups. Any pointers?
We can't modify the contents of a POST request but we can indeed alter
the URI. And yes it does support substitution groups. For instance, you
could duplicate the only url param you currently have, eg something
approximately like this :
reqrep ^(.*)\?([^&]*)$ \1?\2&\2
Regards,
Willy