using the default pagination class, and following the odeigniter user manual i fail to see how you can make the url make sense to the user?
for example: the links will look like this: < 1 2 3 4 5 > but the url for link 1 is
localhost/entries/page/
when i would expect it to be
localhost/entries/page/1
similarly on page 3 it is:
localhost/entries/page/4
obviously it is using the offset as the 3rd segment in the uri. How can I get pagination to work using page numbers, where the link numbers actually match the 3rd uri segment?