Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions editor/configurations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,16 @@ Document your API endpoints.
- **Menu drilldown**: Enable or disable auto-navigating to the first page when a user clicks a navigation group.
- **Timestamps**: Show "Last modified on [date]" on all pages.
- **SEO indexing**: Choose whether to index hidden pages for search engines.

## Manage redirects

Use the **Redirects** section to preserve links when you move, rename, or delete pages. Each redirect maps a source path on your site to a destination path, and you can mark it as permanent or temporary.

- **Add**: Select **Add** to create a new redirect, then enter the source and destination paths.
- **Source**: The path to redirect from, like `/old-path`.
- **Destination**: The path to redirect to, like `/new-path`.
- **Permanent toggle**: When enabled, issues a permanent redirect (HTTP 308). Disable it to issue a temporary redirect (HTTP 307). New redirects are permanent by default.
- **Search**: Filter your existing redirects by source or destination path to quickly find a specific entry.
- **Delete**: Select the trash icon next to a redirect to remove it.

Changes save to your `docs.json` file. For the underlying schema and JSON examples, see [`redirects`](/organize/settings-structure#redirects).
Loading