I\'m looking for a one line route to route dashed controller and method names to the actual underscored controller and method names.
For example the URL
Actually this is native now in Codeigniter 3 Just do this in routes file
$route['translate_uri_dashes'] = TRUE;
And it will do it for controllers and methods automatically . Please vote this answer up , as it's most recent