so I have one url, chickens.com/hatching
that has potential query strings it could be indexed with, i.e. chickens.com/hatching?type=fast
. I would definitely like to keep the base url, chickens.com/hatching
indexed, but no query parameters. I would like query parameters indexed on other pages, just not this one, so a catchall for all pages will not work. Secondarily, I am rewriting urls to remove trailing slashes, would this catch chickens.com/hatching/?type=fast
as well as chickens.com/hatching?type=fast
??
Does this work as a solution to my issue?
Disallow: /hatching?*
I have heard this only works for google crawlers... is there a more robust solution for all crawlers?
Thanks for any help! It is greatly appreciated.