Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwclouser@mozilla.com <wclouser@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-03-17 16:47:49 (GMT)
committer wclouser@mozilla.com <wclouser@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-03-17 16:47:49 (GMT)
commit33f9646f6f0b2dc8db29efd365a4f4268f79422c (patch)
tree0a1f113d8c5d77163572ffa8e5c2808059dd781d
parent1b806c6f4985c421c371a54d39a68d94ef817533 (diff)
Don't index share links, bug 483690
git-svn-id: http://svn.mozilla.org/addons/trunk@23423 4eb1ac78-321c-0410-a911-ec516a8615a5
-rw-r--r--site/app/views/pages/robots.txt.thtml2
1 files changed, 2 insertions, 0 deletions
diff --git a/site/app/views/pages/robots.txt.thtml b/site/app/views/pages/robots.txt.thtml
index 79aa639..29e090a 100644
--- a/site/app/views/pages/robots.txt.thtml
+++ b/site/app/views/pages/robots.txt.thtml
@@ -59,6 +59,8 @@ foreach ($supported_languages as $lang => $loc) {
echo "Disallow: ".$html->url("/{$lang}/{$app}/users/pwreset/\n", true, false, false);
/* do not index search */
echo "Disallow: ".$html->url("/{$lang}/{$app}/search/\n", true, false, false);
+ /* do not index share links */
+ echo "Disallow: ".$html->url("/{$lang}/{$app}/addon/share/\n", true, false, false);
}
}
?>