---
title: "Hidden Pages"
description: "Hide pages from the sidebar while keeping them accessible."
canonical_url: "https://farming-labs-docs-docs-cloud-auuecsxay-farming-labs.vercel.app/docs/organize/hidden-pages"
markdown_url: "https://farming-labs-docs-docs-cloud-auuecsxay-farming-labs.vercel.app/docs/organize/hidden-pages.md"
last_updated: "2018-10-20"
---

# Hidden Pages
URL: /docs/organize/hidden-pages
LLM index: /llms.txt
Description: Hide pages from the sidebar while keeping them accessible.

# Hidden Pages

Sometimes you need pages that are accessible via URL but hidden from the
sidebar navigation.

## Using Frontmatter

Add `hidden: true` to your page's frontmatter:

```mdx
---
title: Secret Page
hidden: true
---

This page won't appear in the sidebar.
```

## Use Cases

- **Draft content**: Pages still being written
- **Internal pages**: Content for specific audiences
- **Redirect targets**: Pages that only serve as redirect destinations
- **API callbacks**: Documentation for webhook endpoints

## Accessing Hidden Pages

Hidden pages are still accessible via their URL. You can link to them
from other pages:

```mdx
Check out our [internal guide](/docs/internal-guide) for more details.
```

## Sitemap

See the full [sitemap](/sitemap.md) for all pages.
Docs-scoped sitemap: [/docs/sitemap.md](/docs/sitemap.md).
Well-known sitemap: [/.well-known/sitemap.md](/.well-known/sitemap.md).
