Reputation: 1157
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
Reputation: 20724
Just add the id param like:
root :to => 'pages#show', :id => 1