Hi, I want to enable this kind of routing in my site where users can create their vanity urls
test.com/[user-url]
but also dont want to ruin the routing for my existing controllers test.com/users test.com/business test.com/admin
so I added this to my routes.php
Router::connect('/*', array('controller' => 'business', 'action' => 'view'));
is it possible to use regex for the '/*' so I can have exclude the routes for my controllers?
p.s. pretty much like the routing in facebook