Forum Moderators: goodroi
is there a way, other than listing them oen by one?
thanks,
Example: your files are
/directory/a1234xx.html
/directory/b2345yy.html
/directory/b2433zz.html
/directory/c8768aa.html
You want to block spidering of all those files except for directory/b2433zz.html
Solution:
User-agent: *
Disallow: /directory/a
Disallow: /directory/b23
Disallow: /directory/c
This disallows all other files without specifying their full path.
This seems like a nice workaround it. The Allow directive was not validated.
thanks,