flightphp / core

An extensible micro-framework for PHP
https://docs.flightphp.com
MIT License
2.6k stars 407 forks source link

Handling of URLs with encoded slashes (/) #552

Closed daniel-sc closed 3 months ago

daniel-sc commented 3 months ago

Currently it is not possible to have URL parameters which contain (encoded) slashes.

E.g. for the route /redirect/@id the request url /redirect/before%2Fafter should result in $id = 'before/after'.

AFAIK this is the standard behavior in other implementations.