I have been trying to get only ONE of my functions to load with standard query string with no luck. I played with both the config and route files only to come with more errors. If anyone has any suggestions I would appreciate it
URL
www.your-site.com/class/function?c=controller&m=function
route.php
$route['class/function?:any'] = "class/function/$1";
config.php
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_-?=&';
$config['enable_query_strings'] = TRUE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
