From d6b0d14950409c14feeb58729f591416307b2cd3 Mon Sep 17 00:00:00 2001 From: Kevin Blackburn-Matzen Date: Sun, 19 Apr 2026 22:31:40 -0700 Subject: [PATCH] Fix robots.txt prefix match blocking apple-touch-icon.png Disallow: /app used prefix matching and silently blocked /apple-touch-icon.png at the site root, preventing Google from indexing the landing page. Split each disallow into an explicit prefix (/app/) and end-anchored (/app$) form so only the SPA routes are excluded. Co-Authored-By: Claude Opus 4.7 (1M context) --- public/robots.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/public/robots.txt b/public/robots.txt index 5fe3667..03fe293 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -1,7 +1,9 @@ User-agent: * Allow: / Disallow: /api/ -Disallow: /app -Disallow: /gate +Disallow: /app/ +Disallow: /app$ +Disallow: /gate/ +Disallow: /gate$ Sitemap: https://sinter-3d.com/sitemap.xml