Skip to main content
  • Type: string[]
This can help you avoid indexing duplicate URLs. You can use wildcards to pattern match.

Examples

In this example, the ref and all utm_ parameters are ignored in crawled URLs. Your crawler saves http://localhost?page=1&ref=algolia&utm_source=doc as http://localhost?page=1.
JavaScript
{
  ignoreQueryParams: ["ref", "utm_*"],
}
I