docs: fix broken doc links (redirects + dead card link)#569
Open
Corey-T1000 wants to merge 2 commits into
Open
docs: fix broken doc links (redirects + dead card link)#569Corey-T1000 wants to merge 2 commits into
Corey-T1000 wants to merge 2 commits into
Conversation
Contributor
|
Preview deployment status for this pull request.
|
f39a996 to
ef22008
Compare
Several pages moved or were removed without redirects, leaving indexed URLs 404ing; add permanent (308) redirects in next.config.mjs following the existing best-practices pattern: - /authzed/concepts/authzed-materialize -> /materialize/getting-started/overview (single concept page promoted to a top-level section, #562) - /spicedb/ops/ai-agent-authorization -> /spicedb/tutorials/ai-agent-authorization - /spicedb/ops/secure-rag-pipelines -> /spicedb/tutorials/secure-rag-pipelines (both moved to the new Tutorials section on 2026-02-05) - /spicedb/ops/spicedb-langchain-langgraph-rag -> /spicedb/integrations/langchain-spicedb (folded into the langchain-spicedb integration page on 2026-02-05) Also fix a dead internal link: the first-steps 'Install the SpiceDB server binary' card pointed at /spicedb/getting-started/installing-spicedb, which was refactored into install/<os> pages and never existed under that path. Point it at install/macos, matching how the rest of the site links to install docs. Sources are basePath-relative; browsers preserve any #fragment.
ef22008 to
2d80399
Compare
samkim
reviewed
Jul 9, 2026
samkim
approved these changes
Jul 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
A sweep for broken doc links after recent page moves. Two kinds of fix.
Redirects (
next.config.mjs) — moved/removed pages leaving indexed URLs 404ing/authzed/concepts/authzed-materialize/materialize/getting-started/overview/spicedb/ops/ai-agent-authorization/spicedb/tutorials/ai-agent-authorization/spicedb/ops/secure-rag-pipelines/spicedb/tutorials/secure-rag-pipelines/spicedb/ops/spicedb-langchain-langgraph-rag/spicedb/integrations/langchain-spicedbThe three
/spicedb/ops/*pages were live ~2 months (since the Nextra v4 upgrade) before moving, so they're the most likely to be indexed. Permanent (308) redirects following the existing best-practices pattern; sources are basePath-relative; browsers preserve any#fragment.Dead internal link
The
getting-started/first-steps"Install the SpiceDB server binary" card pointed at/spicedb/getting-started/installing-spicedb— a path that never existed (install docs live underinstall/<os>). Repointed toinstall/macos, matching how the rest of the site links to install docs.How this was verified
page.*accounted for.app/and checked every absolute + fully-qualified (authzed.com/docs/...) internal link against it: 0 broken after the card fix.](./sibling)links resolve correctly in Nextra (verified), not broken.Not included
Two Materialize pages (
concepts/hydration,api/download-api) were created and removed entirely within the #562 branch before merge — never shipped to production, so no redirect needed.