sorry for my english...
I have some problems using will_paginate and named routes, here is some code (my site is in spanish language):
routes.rb
map.animals '/animales/:scope/:id', :controller => :categories, :action => :show
with these routes I generate urls like:
www.domain.com/animales/mamiferos/perros
but, when pages links are generated I get links like
www.domain.com/animals/perros?page=2&scope=mamiferos
NOTE: I am also using friendly_id.
Thanks in advice ;)
Regards.