I want to disallow all URLs with a certain query parameter in array format.
For example I have this kind of URL:
https://example.com/site/?param[index]=1¶m[index2]=5
and I do not want all crawlers to crawl site with param
parameter in all array variations.
Second question: Is it possible to disallow only if certain array parameter occurs? For instance, param[index3]
? (I do not need it, but it could be useful for other people)