In my router.php file I added this code.
$route[‘mission’] = “content/index/mission”;
Here as you know content is controller, index is function and mission is parameter to that function.
But when i check it in my browser, it takes me to content/index .
In other words, it is not passing required parameter to index function.
Make sure your recieving the parameters through the function parameters and not using uri segments.
Controller: