1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# Define access-restrictions for robots/spiders
# http://www.robotstxt.org/wc/norobots.html
# Add Googlebot-specific syntax extension to exclude forms
# that are repeated for each piece of content in the site
# the wildcard is only supported by Googlebot
# http://www.google.com/support/webmasters/bin/answer.py?answer=40367&ctx=sibling
User-agent: Googlebot
Disallow: /*sendto_form$
Disallow: /*folder_factories$
Disallow: /*discussion_reply_form
Disallow: /*send_news_form$
Disallow: /*subscribenewsletter$
User-agent: bingbot
Disallow: /*sendto_form$
Disallow: /*folder_factories$
Disallow: /*discussion_reply_form
Disallow: /*send_news_form$
Disallow: /*subscribenewsletter$
# By default we allow robots to access all areas of our site
# already accessible to anonymous users
User-agent: *
Disallow:
|