I have the following route
map.resource :account, :controller => "users"
map.resources :users
and /account/new points to /users/new just fine.
However, if I add a new page, payment.html.erb, in /app/views/user, restart the server, and visit /account/payment, I get
No route matches "/account/payment" with {:method=>:get}
/users/payment does show the payment page, though.
Why is the route not working for /account/payment?