PARINetwork / pari

Django/Wagtail based PARI webapp
http://ruralindiaonline.org
BSD 3-Clause "New" or "Revised" License
36 stars 11 forks source link

Website Pagination #391

Closed gounder closed 5 years ago

gounder commented 5 years ago

Earlier the site had fixed pagination in spite of the author having a lower number of pages for e.g. P Sainath has 9 pages of articles but the site showed pages 10 & 11 as well and these have been crawled by Google Search

The following are some of the author pages for which Google has started showing an error: https://ruralindiaonline.org/authors/shalini-singh/?page=2 https://ruralindiaonline.org/authors/urvashi-sarkar/?page=2 https://ruralindiaonline.org/authors/sasikumar-vasudevan/?page=2 https://ruralindiaonline.org/authors/p-sainath/?page=11

Can we have a check where if that author has a lesser page then it will redirect back to the author’s main page For e.g. if visited https://ruralindiaonline.org/authors/p-sainath/?page=11 instead of giving a 404 error it redirected to https://ruralindiaonline.org/authors/p-sainath/

Also, there shouldn’t be a page 1 like this - https://ruralindiaonline.org/authors/sasikumar-vasudevan/?page=1 & https://ruralindiaonline.org/stories/categories/things-we-do?page=1

charl3sj commented 5 years ago

Can we have a check where if that author has a lesser page then it will redirect back to the author’s main page For e.g. if visited https://ruralindiaonline.org/authors/p-sainath/?page=11 instead of giving a 404 error it redirected to https://ruralindiaonline.org/authors/p-sainath/

@gounder Should it go to first page or last page of paginated results? (Pagination won't show if only 1 page from hereon) Thoughts?

gounder commented 5 years ago

So the first page will now be https://ruralindiaonline.org/authors/p-sainath/ and not https://ruralindiaonline.org/authors/p-sainath/?page=1. So if someone visits a non-existent page like https://ruralindiaonline.org/authors/p-sainath/?page=11 the should redirect to the first page i.e. https://ruralindiaonline.org/authors/p-sainath/

charl3sj commented 5 years ago