I have a model stories in Rails 3.
I want to make an alias \"books\" for \"stories\" so I can have routes /books/192 instead of /stories/192
/books/192
/stories/192
Try something like this:
match 'books/:id' => 'books#show' match 'books' => 'books#index'