[eluser]Fenix[/eluser]
On the contrary. I find it much easier to use the URLs the way I am doing it now:
Code:
// to get the CI part of the URI (/api/categories) I just do this:
$this->uri->uri_string()
// to grab the query string and put it into an associative array, I use
parse_str($_SERVER['QUERY_STRING'],$this->query_string);
// to check if all the required arguments were passed, I just check for the key in the array like this
if(array_key_exists('appkey',$this->query_string))
// see? no need for changing messy CI configurations at all! :)
I'm going to try the _remap() method as slowgary descibed above. I'll update with my results.
THanks so far!