CakePHP and admin routing with a 'catch all' action.
I'm trying to build a mini cms, whereby all urls go to the index action of a 'products' controller. The products_controller checks the url and treats it as a parameter, so '/widgets' would hit the index($url) function and pass 'widgets' to be the $url param. I then do a lookup like this checking a field called url: $product= $this->Pr...