Hi guys I'm using zend framework here and I've enabled url-rewrite so all my urls are clean. The thing is that I've incorporated pagination of results on some pages and I want to append parameters to the url in this form:
www.mysite.com/controller/page/2
However I can't do it without appending the default action i.e index to the end of the url so I'm compelled to write urls like:
www.mysite.com/controller/index/page/2
How do I fix this so my url resembles the first one?