0
Personal need to create a route in which a parameter of it is a filename with the extension. How do I create this one? Ex. http://localhost:8080/download/.pdf file
I created so but error because of stitch before PDF.
$app->get('/download/:arquivo', function($arquivo) use($app) {...});
Obrgado