Is it possible to redirect from one controller to another using POST request? redirect_to supports only GET. I found something called "post_via_redirect", but it seems that it was deprecated in Rails 3.
+1
A:
Maybe try adding:
:method => :post
to the end of your redirect_to line.
Tim
2010-09-23 21:28:03
No effect on redirect_to
Vincent
2010-09-23 22:20:07