I'm trying to make working routes with question mark in CodeIgniter. I wan't to do smth like this:
$route['smth?(:any)'] = 'smth/smth/smth_fce/$1';
But problem is, in CodeIgniter it tooks just string before ? and string after it it won't pass to the function. Is there any way, to make it working?