Skip to content

Commit 125f6db

Browse files
JacobCoffeeclaude
andcommitted
add redirect from Blogger feed URL to new RSS feed
/feeds/posts/default → /rss.xml so existing subscribers don't break when blog.python.org moves off Blogger. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e862d00 commit 125f6db

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

astro.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ try {
2323
// No redirects file yet (run migration first)
2424
}
2525

26+
// Blogger feed URLs → new RSS feed
27+
redirects["/feeds/posts/default"] = `${base}/rss.xml`;
28+
redirects["/feeds/posts/default/"] = `${base}/rss.xml`;
29+
2630
// Keystatic integration only in dev mode (requires server rendering)
2731
const integrations = [mdx(), sitemap(), react()];
2832
if (isDev) {

0 commit comments

Comments
 (0)