The "/*" route is the faithful catch-all (possibly called match-all, just not by me) and the Router works its magic on the first match it finds. Other than the previously mentioned option of leaving the catch- all at the end where it normally lives, there are a couple of alternatives:
1. Adding exceptions to the route. See http://book.cakephp.org/view/46/Routes-Configuration There was also another code example where a small loop built the list of exceptions from all the available controllers, but naturally I can't seem to find it now. You might also find route params or prefixes useful. 2. Use a custom error class. This is something that Snook touched on in early 2008, and you can find his article at http://snook.ca/archives/cakephp/static_pages_cakephp12/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
