mlzboy
mlzboy

Reputation: 14721

rails3 routes how to match root `/` to path homes#index

i tried to use the resources :homes can work,but then second line code didn't work

resources :homes #right
root :to => 'homes#index'#didn't work

what's the problem?

Upvotes: 0

Views: 1498

Answers (1)

John Topley
John Topley

Reputation: 115432

You need to have root :to => 'homes#index' at the end of your routes.rb file.

Upvotes: 2

Related Questions