Hi there, I have a photo gallery wich i paginate with "will_paginate". I added this line to my routes file, to make "will_paginate" work with friendly url's:
map.paginated_gallery 'gallery/page/:page', :controller => 'gallery', :action => 'index', :page => nil And it works perfectly. Now when one click any thumbnail of the gallery i want to generate friendly url's like these: http://localhost:3000/gallery/page/1/product/49 http://localhost:3000/gallery/page/1/product/50 http://localhost:3000/gallery/page/1/product/51 So that means that i am in the gallery controller, located at page number 1, and viewing thumbnails of the 49(or 50 or 51 etc) product. I added this line for that purpose: map.connect 'gallery/page/:page/product/:product_id', :controller => 'gallery', :action => 'index', product_id => nil So with this, i can use http://localhost:3000/gallery/page/1/product/49 without any problem......... but: I do not know how to generate the thumbnails links in the correct way, i generate them like: <%= link_to "something here", params[:page] + "/ product/" + product_picture.id.to_s %> so when i clicked in the first thumbnail i get a good url like: http://localhost:3000/galeria/page/1/product/49 but when i clicked a second one the url comes like: http://localhost:3000/galeria/page/1/product/1/product/52 1- Am i generating right the links?? 2- The "map.connect 'gallery/page/:page/ product/:product_id', :controller => 'gallery', :action => 'index', product_id => nil" is correct? Any ideas? Regards --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

