Mobile app version of vmapp.org
Login or Join
Welton855

: Multiple paginations on a page, indexing and canonical In my ruby on rails app, I'm showing multiple paginated items on a single page. For a single items pagination, I know how to use pagination

@Welton855

Posted in: #CanonicalUrl #Noindex #Pagination #RubyOnRails #Seo

In my ruby on rails app, I'm showing multiple paginated items on a single page. For a single items pagination, I know how to use pagination and rel='prev' and 'next' attributes and canonical. But in my case, there can be multiple permutations and combinations of a page and this confuses me. From a user's perspective in my case, he/she'll be happy to see different types of information regarding an object on a single page and paginations. But, from a search engine's perspective, it's not that friendly and may cause partial duplicate content. My intention is to get ranked for the index page and google to find the content from index and paginated pages. Some of these items are accessible from other pages as well in different listings on separate page. And I also intend make a sitemap.xml file.

So I have following options:


Keep only index page in the index and make rest of the paginated pages in noindex using robots meta tag.
Use canonical URLs from the request URL and do not use rel='prev' and 'next', because otherwise it'll cause say 10x10= 100 variations of the page if each item has 10 paginated pages.
Use canonical URLs and rel='next' and 'prev' for one of the paginated items and ignore the rest of the URLs or use noindex meta tag for rest of the URLs. I'm leaning toward this solution. So it'll effectively make one pagination on my page and rest of URLs won't interfere with it.
If you can suggest a better approach in my case. I'm using kaminari for pagination.


Also, do you recommend the use of ajax to load paginated pages, instead of using numbered navigation buttons?

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Welton855

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme