2012-04-03 32 views
11

我得到了一个名为posts的资源,现在我想将root作为资源映射到帖子。 所以作为结果:如何将根映射到rails中的资源?

'/帖'=>无

'/帖/ 1'=>无

'/'=>帖子#索引

'/ 1'=>帖子#表明

回答

16

config/routes.rb变化

resources :posts 

到:

resources :posts, :path => '/' 
相关问题