I have two options but I don't know which is the correct:
/search/*t* /search/?t*
Thank you
goodroi
1:32 pm on Jul 3, 2010 (gmt 0)
wildcards aka pattern matching is not officially part of the robots.txt protocol. this means most of the big search engines support it but most of the smaller one won't.
To match a sequence of characters, use an asterisk (*). For instance, to block access to all subdirectories that begin with private:
User-agent: Googlebot Disallow: /private*/
phranque
10:45 am on Jul 4, 2010 (gmt 0)
according to the robots exclusion protocol (which doesn't include any wildcard extensions as supported by google) the matching occurs left-to-right and the correct option would be: /search/?t
chms
3:14 pm on Jul 4, 2010 (gmt 0)
Without * at the end?
Dijkgraaf
9:20 pm on Jul 4, 2010 (gmt 0)
Yes, without the * at the end. The standard is that any URL which starts with the string you specified will be matched.