My URL is:
https://example.com/c3dlZXRfcmFqdmk5MUBob3RtYWlsLmNvbQ=
When I remove =
then it works fine.
I have this in config.php
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
Error:
The URI you submitted has disallowed characters.
How can I allow =
or ==
signs in URI?
I have tried it by changing this:
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-='; // added = sign at the end
In /project-folder-name/application/config/config.php configure this variable:
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-@\=';
it also works for @ character
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With