Hi, I need to use legacy-style routing. And it''s namespaced. According to http://edgeguides.rubyonrails.org/routing.html, it should be like the following. match '':controller(/:action(/:id))'', :controller => /admin\/[^\/]+/ /admin/c1/a1 works fine. But the problem is that, if I have /c2/a2 (note it''s not namespaced with admin) /admin/c2/a2 also works even if I don''t have Admin::C2Controller. So /admin/c2/a2 is mapped to c2#a2. This might not be a big problem but I feel it''s weird. What do you think? Sam -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.