It is truly verified and verified.
It works with any method you like; giving you the freedom to mix match query string and / segment (unlike previous answers)
which you want to use:
example.com/my/group/?id=5
(pay attention to trailing / earlier?). OR
example.com/my/group/5
(depending on your url template definitions in the router file). OR EVEN
example.com/index.php/?my/group/?id=5
(although it looks uncomfortable)
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]
and in the codigniter config / config.php file set
$config['uri_protocol'] = 'AUTO'; $config['enable_query_strings'] = TRUE;
source share