标签: ruby-on-rails
我有一个名为posts的资源,现在我想将root作为资源映射到帖子。 结果如下:
'/ posts'=>没有
'/ posts / 1'=>没有
但
'/'=>帖子#索引
'/ 1'=>讯息显示#
答案 0 :(得分:20)
在config/routes.rb更改
config/routes.rb
resources :posts
为:
resources :posts, :path => '/'