I mean when I put the name of the controller in the uri permissions, do I always put the controller name, or do I need to put the rerouted name as well.
So with:
$route[‘alternate/route’] = ‘auth/login’;
If it checks it based on the actual url, then if I put something like “auth/login” that will never be seen because “alternate/route” is there instead.
The way I’m thinking is check_uri_permissions is called before any function call and checking the currently requested page against the whitelist. When it checks, does it search for the function that’s being called, or is it looking at the url itself.