From 7138c10f1f72262cee980ae5f89d7dd73f7de349 Mon Sep 17 00:00:00 2001 From: Enrico Piovesan Date: Sat, 11 Jul 2026 09:24:51 -0600 Subject: [PATCH] fix: 404 on /sitemap.xml robots.txt correctly pointed at /sitemap-index.xml (the file @astrojs/sitemap actually generates), but /sitemap.xml -- the conventional default path crawlers and tools check without reading robots.txt first -- 404'd. Added a static sitemap.xml pointing at the same real sub-sitemap (sitemap-0.xml) so both paths resolve. Co-Authored-By: Claude Sonnet 5 --- public/sitemap.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 public/sitemap.xml diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..6ef05bd --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1 @@ +https://traverse-framework.com/sitemap-0.xml