activebridge / activebridge.github.io

3 stars 1 forks source link

Resolve issue with duplication and search indexing of paginated pages #177

Closed daryakuritsyna closed 5 months ago

daryakuritsyna commented 5 months ago

We need to enhance our SEO strategy for the paginated pages of our blog by implementing unique meta tags for each page and utilizing canonical tags to manage duplicate content issues effectively.

Using both unique meta tags and canonical tags allows for a nuanced approach. Unique meta tags improve user experience and search matching for each page's specific content. At the same time, canonical tags ensure that search engines correctly understand and index the structure of AB site, particularly when dealing with paginated series or similar content spread across multiple URLs.

Solution.

1. Unique Meta Tags. Resource: All the meta tags are documented and available in the following Google Docs spreadsheet: SEO Meta Tags Sheet.

For paginated content, like a blog series, it's beneficial to indicate the page number or series part within the title and meta description for each paginated page.

2. Meta Tags for Pagination. Use the rel="next" and rel="prev" links to indicate the relationship between paginated pages. F ex. for link https://activebridge.org/blog/2/

<link rel="prev" href="https://activebridge.org/blog/" />
<link rel="next" href="https://activebridge.org/blog/3/" />

3. Canonical Tags. Use canonical tags on each paginated page to inform search engines that while each page is part of a larger sequence, it should be considered for indexing as its own entity.

blog series 1:

blog series 2:

Smoke-ck commented 5 months ago

180

Smoke-ck commented 5 months ago

Hi @daryakuritsyna, it's already in prod.