Forum Moderators: phranque
I am having a very similar problem, the internal redirect is simply not sending the post data to a cgi (in this case login info) though of course the get data is arriving just fine.
Anyone have additional insights/workarounds at this point (hopefully)?
Obviously, POSTs cannot be allowed to pass through an external (i.e. 301 or 302) redirect, because that would be a potential security threat to the client, but I would think that a server-internal rewrite would be OK.
Jim
According to jdMorgan (and to my earlier post he mentioned ;-) you can't forward the post data to external sites with redirection, only with proxying. The same applies to local resources; if you specify the Redirect flag for your rules it won't work.
The P flag you don't need in this case, since this is an internal rewriting. It means that the apache loads the rewritten file instead of the original one, but the request is kept unchanged (so what was included in the original request (post data for example) it will be in the rewritten one also).