Skip to content

Fix 404s for /tutorials/* by redirecting to learn.temporal.io#5

Draft
Copilot wants to merge 1 commit intomainfrom
copilot/fix-broken-links-in-docs
Draft

Fix 404s for /tutorials/* by redirecting to learn.temporal.io#5
Copilot wants to merge 1 commit intomainfrom
copilot/fix-broken-links-in-docs

Conversation

Copy link
Copy Markdown

Copilot AI commented Mar 23, 2026

Algolia search results on docs.temporal.io surface tutorial section URLs (e.g. /tutorials/ai/building-mcp-tools-with-temporal/...) that 404 because tutorial content lives on learn.temporal.io, not docs.temporal.io.

Changes

  • vercel.json: Added a catch-all permanent redirect at the top of the redirects array:
{
  "source": "/tutorials/:path*",
  "destination": "https://learn.temporal.io/tutorials/:path*",
  "permanent": true
}

Covers all tutorial paths surfaced by search, not just the specific MCP tools tutorial from the bug report.

Notes to reviewers

The redirect is intentionally placed first in the array to ensure it matches before any more-specific rules. If any tutorial paths need to stay on docs.temporal.io in the future, add those as explicit entries before this catch-all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants