I would like to know the simplest solution to changing the underscores of my codeigniter urls to dashes, for seo reasons.
My controllers look like:
publi
Code Ignitor 3 has this in built:
$route['translate_uri_dashes'] = FALSE;
Just change to TRUE and you can use either _ or -.
TRUE
_
-
Documentation