I have this code:
$app->group('/api', function(\Slim\App $app) {
$app->get('/user/{email}', \App\Server\Controller\UserController::class . ':get');
});
When I call this url: /api/user/name@domain.com
, response is 404. the problem is in .com. Without this, response is 200 OK. How to add email address to url? thanks for advices