如何将用户显示为localhost:3000/:id
而不是localhost:3000/users/:id
如何正确地重定向到新路线?
我使用mongoid 4.0.0,rails 4.1.5,设计3.3.0和mongoid_slug
答案 0 :(得分:1)
在config/routes.rb
文件中
get '/:id', to: 'users#show'
答案 1 :(得分:0)
我找到了解决方案:
route.rb
resources :users, only: :index
resources :users, except: :index, path: '/'