When you change the path of a file in your docs folder, it also changes the URL path to that page. This may happen when restructuring your docs or changing the sidebar title.Documentation Index
Fetch the complete documentation index at: https://mintlify-admin-mcp-admin-mcp-docs-b9cfd78.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Redirects
Redirects cannot include URL anchors like
path#anchor or query parameters like path?query=value.redirects field to your docs.json file.
/source/path to /destination/path.
By default, redirects are permanent (308). To use a temporary redirect (307), set permanent to false.
Wildcard redirects
To match a wildcard path, use* after a parameter. In this example, /beta/:slug* matches /beta/introduction and redirects it to /v2/introduction.
Partial wildcard redirects
Use partial wildcards to match URL segments that start with a specific prefix./articles/concepts- path, such as /articles/concepts-getting-started and /articles/concepts-overview, and redirects them all to /collections/overview.
You can also substitute the captured wildcard value in the destination.
/old/article-123 to /new/article-123, preserving the captured value after the prefix.