Ok, I kept digging, and found my own answer again across a couple
different posts.... so in case it can help anybody else in the future:

I added this to the very end of my routes.php:

Router::connect('/*', array('controller' => 'slug_pages', 'action' =>
'view'));

to catch all wild card created sections to go to the view action of my
SlugPagesController

Then in my view action my first line of code is:

$getParms = func_get_args();


so as in my example of http://www.mysite.com/about/sub1/sub2/sub3/page1
I would get an array like this:

Array
(
    [0] => about
    [1] => sub1
    [2] => sub2
    [3] => sub3
    [4] => page1
)

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to