Robbie Done
Robbie Done

Reputation: 1157

rails 3 routing not working as i would like

How would i go about routing the default page in my rails application to :

http://localhost:3000/pages/1

at the moment in my routes file i have:-

root :to => 'pages#show'

Upvotes: 1

Views: 39

Answers (1)

lucapette
lucapette

Reputation: 20724

Just add the id param like:

root :to => 'pages#show', :id => 1

Upvotes: 1

Related Questions