How to redirector to another controller within subcontroller

redirect_to :controller => "/app"

... will redirect to "app" at the base of your site.

redirect_to :controller => "app"

... will redirect to "app" in the same controller that you're in currently.

  -- Wes