I want to combine pagination and sorting, with nice url...
Don't sure how to do that...
the urls I have now are:
'index/page-<page:\d+>/*' => 'blog/index',
result:
Quote
mydomain.com/index/page-7.html
Now I want to add sorter
The sorting urls now look very ugly...
for example sorting by title:
Quote
mydomain.com/index/page-4/ajax/yw0/sort/title.html
to remove the ajax/yw0 stuff, I just used in paginator
'params' => array(),
And this removed the ajax rubbish, but if I add this to the sort the sorter wont see the page number...
and the pager don't see the pagination...
so
'params' => array(),
is not the way to go...
but I don't want google to index ajax/ywo stuff... I must remove that
help someone, hope this is not that confusing

Help
















