I am using CodeIgniter version 1.7.2. I need to allow url parameters, for example
http://www.mydomain.com/?test=test.
I try to change uri_protocol
from
$config['uri_protocol'] = "AUTO"
to
$config['uri_protocol'] = "PATH_INFO"
and it worked but then all my other links like
http://www.mydomain.com/test does not work.
What is solution here?
I also tried to use
permitted_uri_chars
but I can't made it work.