I want to use page_cache with will_paginate.
There are good information on this page below.
http://railsenvy.com/2007/2/28/rails-caching-tutorial#pagination http://railslab.newrelic.com/2009/02/05/episode-5-advanced-page-caching
I wrote routes.rb looks like:
map.connect /products/page/:page , :controller => products , :action => index
But, links of url are not changed to /products/page/:page which are in will_paginate helper. They are still products?page=2
How can i change url format is in will_paginate?