[eluser]Colin Williams[/eluser]
Ah.. I read your example backwards. You're saying you want links like
Code:
http://site.com/10/phrase/
http://site.com/20/phrase/
Is this correct? If so, there is no configuration you can do that will work because you are going against convention. The pagination class
always does $config['base_url']/$offset. Your best bet is to overload the Pagination class as needed to meet your needs.
You could also, I suppose, doctor up the result of Pagination::create_links() with some regex replaces, but that's messy and ass-backward. I'd stick with rolling your own version.