Rails 3自定义路由参数

时间:2010-10-16 06:54:24

标签: ruby-on-rails

我想在我的routes.rb中找到这样的东西。这根本不正确,但是这样的事情:

match '/:scope/authenticate' => '%{:scope}_authentication#create'

所以转到/ users / authenticate将路由到users_authenticate控制器中的create方法。

在Rails 3中执行此操作的最佳方法是什么?

1 个答案:

答案 0 :(得分:2)

不是我做过的事,但这有用吗?

resources :users_authenticate
resources :things_authenticate
resources :admins_authenticate
match "/:scope/authenticate" => redirect("%{scope}_authenticate/create")