我想在我的routes.rb中找到这样的东西。这根本不正确,但是这样的事情:
match '/:scope/authenticate' => '%{:scope}_authentication#create'
所以转到/ users / authenticate将路由到users_authenticate控制器中的create方法。
在Rails 3中执行此操作的最佳方法是什么?
答案 0 :(得分:2)
不是我做过的事,但这有用吗?
resources :users_authenticate
resources :things_authenticate
resources :admins_authenticate
match "/:scope/authenticate" => redirect("%{scope}_authenticate/create")