Hello all, Can anyone give me a bit of advice on nested controllers? I am using rails 1.2.6. I have controllers/views directory structures as: controllers -products --product1_controller.rb --product2_controller.rb -products_controller.rb views -products --product1 ---index.rhtml ---other_info1.rhtml --product2 ---index.rhtml ---other_info2.rhtml --index.rhtml --other_info.rhtml The ideas is that summary information about all products is provided by actions in the products controller, and information specific to each product is provided from the nested product controllers. Url''s would be as: <server>/products <server>/products/other_info for general products information <server>/products/product1 <server>/products/product1/other_info1 for information specific to product 1 This all seems to work fine on my windows development environment, but on production linux environment with exact same versions of ruby and rails it cannot resolve the product-specific url''s with a "ActionController::UnknownAction (No action responded to product1):" error. Removing/renaming the products_controller.rb does allow the nested product-specific urls to be resolve, but of course the generic products information is no longer viewable under <server>/products. Is there a better/correct way of doing this? Any info gratefully received... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---