I’m working with an api to a service that requires me to use a ‘>’ character in the URL. I’m getting a message when I try to hit the page that says: ‘The URI you submitted has disallowed characters.’ I opened up my config and tried to change the permitted_uri_chars config item to something like: a-z 0-9>~%.:_\\-<>, but it doesn’t seem to work. I tried all kinds of variations like a-z 0-9>~%.:_\\-\<\> or \<\>a-z 0-9>~%.:_\\- and nothing seems to make a difference.
In desperation I changed the entire permitted_uri_chars config to ‘a-z’. When hitting urls with numbers in them everything seems to work fine. Am I missing something? Does the permitted_uri_chars config actually do anything?
Thanks!