Forum Moderators: open
www.domain.com/widget1.php
www.domain.com/widget2.php
...
www.domain.com/widget99.php
www.domain.com/widget100.php
Each page has a different view. To access this view there is a link on every page like this:
On the page widget1.php there is a link to
widget1.php?view=0
How can I stop googlebot from following these links? I can't use robots.txt since I have more than 5000 pages. I can't use <meta> tags, since I want google to follow the rest of the links on the page.
I guess one solution is to append more arguments to the url. Google will then not follow (becaus it only follows if one or two arguments). That solution works, but it's not so beautiful.
Does anyone else have a clue?
Leif
<meta name="robots" content="index,nofollow">
<added> Or if thats not what you want, you can alter your widget1.php to widget100.php so that if they pass a variable to echo or print
<meta name="robots" content="noindex,nofollow">
in the head tags.
</added>
regards,
Mark