1
I wonder if there is any simple way to make the URL different to the controller name in Codeigniter.
Knowing that codeigniter works as follows: www.meusite.com/CONTROLLER/FUNCTION
For example: Calling www.meusite.com/Product/List url I don’t want my controller to be named "Product" but "Productocontroller". But you don’t want the URL to be www.meusite.com/Productocontroller/Listar
can do this with routes, http://www.codeigniter.com/user_guide/general/routing.html
– Marcelo Diniz
Vlw.. That’s exactly what I wanted.
– Romário Melo