I have this
$route['categoria/(:any)'] = 'site/categorias/$1';
$route['subcategoria/(:any)'] = 'site/subcategorias/$1';
Can I change them to this?
$route['(:any)'] = 'site/categorias/$1';
$route['(:any)'] = 'site/subcategorias/$1';
I want all the urls to come from the root.