Reputation: 7585
I want to setup a route so that if the user goes to http://mysite.com/page.html it is routed to the controller page_controller and the action index. How would I do this?
Upvotes: 0
Views: 97
Reputation: 115322
You can do this using a named route:
map.page '/page.html', :controller => 'page'
Upvotes: 2
Reputation: 1635
The usual setup would be to use ressource mapping for this by adding the following line to routes.rb
map.resources :pages
However that will link to http://mysite.com/pages.html and use pages_controller (notice the plural!). But you should be using plurals anyway if you want to stick to the standard Rails way.
Upvotes: -1