Search code examples
phpcodeigniterurl-routingcodeigniter-3

CodeIgniter URL Routing from `example.com/Partners/index.php/vendor` to `example.com/Partners`


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.


Solution

  • 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

    • First thing is that Parents controller doesn't have index method (function).
    • Second go to application/config/routes and add

      $route['partners '] = 'partners/index.php/vendor';