My first codeigniter project, and I hope to find some help with this url and function argument issue.
This is the url that I have a problem with: http://localhost/mysite/info/test/abc+xyz (typed in straight into the address bar)
Controller:info function:test
function test($myargs)
{
echo $myargs;
}
I need the function to echo "abc+xyz" But it CI converts the plus sign to an underscore "abc_xyz" , which I dont want.
Things I have tried : I tried changing
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
TO
$config['permitted_uri_chars'] = 'a-z 0-9~+%.:_\-';
no joy ! Any help greatly appreciated, thanks
EDIT : My htaccess is the usual one to remove index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [QSA,L,NC]