From e6c3a580be0bd1eeccb2c9314d135321c9cdebfb Mon Sep 17 00:00:00 2001 From: Paul Norman Date: Wed, 16 Sep 2026 12:06:24 -0700 Subject: [PATCH] Add trailing slashes to directories in robots.txt The standard specifies that /path/ matches anything under it, but does not specify /path as matching anything other than exactly it. --- public/robots.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/robots.txt b/public/robots.txt index 961878729..668f4a60d 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -11,11 +11,11 @@ Allow: /user/ Disallow: /traces Disallow: /api/ Disallow: /edit -Disallow: /changeset -Disallow: /node -Disallow: /note -Disallow: /relation -Disallow: /way +Disallow: /changeset/ +Disallow: /node/ +Disallow: /note/ +Disallow: /relation/ +Disallow: /way/ Disallow: /login Disallow: /geocoder Disallow: /history -- 2.47.3