I have a URL in codeigniter,
www.example.com/Partners/index.php/vendor
can I route it to www.example.com/Partners
?
I need both URL to point to the same controller.
FIRST SOLUTION
If you don't have index method (function) in parent controller, you can make it and move all code from vendor to index method (function)
SECOND SOLUTION
Second go to application/config/routes and add
$route['partners '] = 'partners/index.php/vendor';