In the [latest 1.6.2](https://www.zenphoto.org/news/zenphoto-1.6.2/), I’m confused by the default changes to `html_meta_tags` and `sitemap_extended` supposedly for SEO best practices, when they seem to go against Google’s advice.
Paginated pages are set to noindex and nofollow, when Google does use them.
> `html_meta_tags:`
>
> * Set robots to noindex, nofollow for paginated pages by default to follow SEO best practices and add options to allow otherwise [acrylian]
[Google says it indexes paginated pages](https://developers.google.com/search/docs/specialty/ecommerce/pagination-and-incremental-page-loading#how-google-indexes-the-different-strategies), as long as they are setup using `<a href>` tags.
> For example, you can implement pagination using links to new pages on your ecommerce site, or using JavaScript to update the current page. Load more and infinite scroll are generally implemented using JavaScript. When crawling a site to find pages to index, Google only follows page links marked up in HTML with `<a href>` tags.
Support is also added for `<link rel="prev/next">` when Google no longer uses it.
> Add suppprt and options for `<link rel="prev/next">` for gallery and news pagination and for single image pages [acrylian]
[Google](https://developers.google.com/search/docs/specialty/ecommerce/pagination-and-incremental-page-loading#use-urls-correctly)-
> In the past, Google used `<link rel="next" href="...">` and `<link rel="prev" href="...">` to identify next page and previous page relationships. Google no longer uses these tags, although these links may still be used by other search engines.
Also for `sitemap_extended`:
> Paginated pages are excluded by default from sitemap to follow general SEO best practice but options have been added just in case it makes sense for individual usages and fix variable type issue [acrylian]
Again, I don’t see any clear guidance on this. I see some old SEO advice saying not to do it, but plenty of other posts and SEO sites saying it is fine to include paginated pages.
It looks like it started with [this bug report](https://github.com/zenphoto/zenphoto/issues/1400). I know that the defaults can be changed, and they seem to work, so this is not a real issue. More just curious on why it was done?