In SlimPHP I can do the following:
```
$app->map('/(:segments+)', function ($segments = array()) use ($app) {
```
To grab the _entirety_ of the url segments and route them with a closure/controller.…
SlimPHP has it: [Link](http://www.slimframework.com/documentation/stable#optional_route_parameters)
KohanaPHP has it: [Link](http://kohanaframework.org/3.2/guide/kohana/routing#creating-routes)
I'd …