AFAIK, there are 2 ways to deal with this. You can either list *all* of your other routes before this one or prepend your pages routes with some string (eg. 'contents'.).
On Sun, Jul 5, 2009 at 11:27 AM, Alastair<[email protected]> wrote: > > I'm working on a CMS in Cake and have a question regarding routing. > Basically I have a pages model which includes a pemalink field - so > when a record is stored in the db, an "About Us" title would become > "about-us" permalink. I would like to access pages such as > http://server/about-us. > I've set up a route like: > > Router::connect('/*', array('controller' => 'pages', 'action' => > 'view')); > > and this work. However, as a result of this route, I'm unable to > access anything else in my app! Would I have to create routes for > everything else prior to this route to allow this to work? > > Thanks in advance, > > Alastair > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
