map.resources :persons
map.resources :people
class Persons_controller < ApplicationController::Base
#the whole logic for the controller
end
class People_controller < PersonsController
#nothing special there
end
How I can use the views from /app/views/persons/ when I access my app from http://mydomain.com/people/1 ?
I get an error about missing people/show.erb view , I don't want use any symlinks