We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a variable containing commas is used in the URL, these commas are changed to the encoded version. For example this:
$router->withModule('Front')->addRoute('/tags[:<slugs>]', [ 'presenter' => 'Tag', 'action' => 'default', ]);
with string variable "music,sports" generates this: www.example.com/tags:music%2Csports
It would be great to be able to keep the commas in their original form and make a nice URL like: www.example.com/tags:music,sports
Would it be please possible to change the router accordingly?
The text was updated successfully, but these errors were encountered:
Reference: https://datatracker.ietf.org/doc/html/rfc3986
segment can contains characters ALPHA / DIGIT / "-" / "." / "_" / "~" / "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "=" / ":" / "@"
ALPHA / DIGIT / "-" / "." / "_" / "~" / "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "=" / ":" / "@"
Sorry, something went wrong.
5b0782d
No branches or pull requests
If a variable containing commas is used in the URL, these commas are changed to the encoded version. For example this:
with string variable "music,sports" generates this: www.example.com/tags:music%2Csports
It would be great to be able to keep the commas in their original form and make a nice URL like: www.example.com/tags:music,sports
Would it be please possible to change the router accordingly?
The text was updated successfully, but these errors were encountered: