Forum Moderators: goodroi
The links are formatted as follows
show_website.php?id=XX
Will the following in my robots.txt file stop these links being followed?
Disallow: /show_website.*
Now, the good news is that in your case you don't need wildcards -- the standard requires checking of given URL starts with whatever you have in disallow field. This means that it effectively has a wildcard at the end of it, so you get what you want by changing your robots.txt to:
Disallow: /show_website.
so we used the information for such removal and placed
User-agent: Googlebot
Disallow: /*?
in our robots.txt file
However, then when attempting to use the url removal tool
for this we get the follwoing message:
URLs cannot have wild cards in them (e.g. "*"). The following line
contains a wild card:
DISALLOW /*?
so what it be? How can we get these pages removed?
Thanks