views:

48

answers:

1

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
No effect on redirect_to
Vincent