Hi Paul, On Tue, Oct 21, 2014 at 03:23:55PM -0700, Paul McIntire wrote: > Hi > > We have a very specific use case where we want to redirect a POST to > /facebook-canvas to a GET request for /index.html > > Is this even possible? How can I do it?
Yes, you need to redirect using code 303, which the browser will understand
as "fetch this URI using the GET method".
For example :
redirect location /index.html code 303 if METH_POST { path /facebook-canvas
}
Regards,
Willy

