Codeigniter Routes

1

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.

    
asked by Ramiro Jaramillo 23.07.2018 в 20:24
source

0 answers