Is there a way without changing the whole configuration of CodeIgniter to get the URI segment for function ($this->uri->segment(2)) as a regular query string instead of being directly mapped to a function?
For example, I would be forced to have a URL like this:
http://localhost/books/functionName/bookNumber
I would like to have the bookNumber number right after the controller name (books):
http://localhost/books/bookNumber If I have the URL like this it would map the bookNumber to a function name.