I have a route like this
/product/update/{productId}/part/{partId}
If I try to call that with one or more empty parameters, it fails and gives me a HTTP 404 Not Found, for example
https://localhost/product/update//part/xyz123
I can't make them both optional, because I still want to require the full URL, including /part/
.
Is it not possible to pass empty parameters to a route using Slim 3? From what I understand, having multiple consecutive slashes is allowed in a URL path?