Referencing another controller in a controller?

This should do it:

redirect_to :controller => ‘recipies’, :action => ‘list’

Remember that redirect_to can take anything that the url_for method can (check that documentation).

Mark