I know their are a few questions on codeigniter pagination but from what I can tell they dont seem to be relevent.
FYI I am using page numbers in my URL, not the index (using config option use_page_numbers)
So my problem is the first link.
My url structure for a page other than page 1 is:
http://www.something.com/foo/page/x
That all works fine however when I hover over the link for page 1 the url that comes up is:
http://www.something.com/foo/page/
Now i know thats because ive declared the base url as:
$config['base_url'] = $this->uri->slash_segment(1, 'both') . 'page/';
But is it possbile to either have the URl for page 1 as:
OR
http://www.something.com/foo/page/1/
Hope that makes sense and someone can help out. I did try setting the base_url to page/1 if the 3rd segment was empty but no joy.
thanks for reading