The URI I meant with is namely:
/ar/users/verify/5454kj/said%40kdfdsf.dff
Where the last URI segment is an email address encoded using the PHP function urlencode
. The application/config/config.php
permitted_uri_chars
has the follwoing value:
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
so %
and .
are permitted. So what is the problem? does it a bug in CodeIgniter 2.2.0? Does it related with IIS?