I\'m trying to figure out how to redirect to a new page (different application, controller, action) and maintain the current POST data.
My app is validating the POST
Rather than redirecting the browser to the new location, why not just forward the request from the controller to the other controller?
return $this->_forward("action", "controller", "module");