Im trying to port over a simple API from Slim and am having issues making routes that accept a variable amount of parameters. The number of parameters is unknown so I cannot hard code numerous different params. For example I have a route that can have numerous numbers of parameters:
/route/var1/var2/var3
/route/var1/var2/
/route/var7/var8/var1/var5
In Slim the syntax is:
/route/:variables+
Is there a way to do this with Phalcon micro? I noticed that the whole path is dumped into $_GET['_url'], however I would prefer not to have to parse that on not found. Thanks