Is there a way to setup fast route to catch all sub routes of a specific route? So for example:
$r->addRoute('GET', '/CSS/*', 'handler');
function handler() {
echo "If you are at example.com/CSS or examples.com/CSS/dir/project/sample this all gets handled here";
}
Is there a way to setup fast route to catch all sub routes of a specific route? So for example: