> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Housing

> The /rh path is a redirect entry point for the Recovery Housing module; it routes immediately to /rh/dashboard.

This path is a pure redirect. Visiting `/rh` causes an immediate client-side `<Navigate replace>` to `/rh/dashboard` and renders no standalone screen.

## Overview

The route `/rh` is registered in `src/routes/rh.tsx` as `<Navigate to="/rh/dashboard" replace />` inside the `RHViewGuard` wrapper. It is not a standalone screen and contains no UI of its own. Any user or deep-link landing on `/rh` is immediately forwarded to the Recovery Housing dashboard without a visible transition.

## Who it's for

Requires `RH_PERMISSIONS.DASHBOARD_VIEW` (`rh.dashboard.view`) via the parent `RHViewGuard`. Users without this permission will not reach the redirect target.

## Before you start

Hold the `rh.dashboard.view` permission. No other preconditions are observable from code because this route renders no content.

## Steps

<Steps>
  <Step title="Navigate to /rh">The browser immediately redirects to `/rh/dashboard`; no action is required on this path.</Step>
</Steps>

## Related

<Columns cols={2}>
  <Card title="Recovery Housing" icon="house" href="/rh/references">
    Recovery Housing references and overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index">
    Documentation coverage and governance.
  </Card>
</Columns>

<Note>
  This page documents shipped product behavior. It is not medical, legal, or
  billing advice. Verify against your organization's policies and applicable
  regulations before using it for clinical, compliance, or billing decisions.
  Protected health information (PHI) shown in the product is governed by your
  tenant's access controls and is never exposed in this documentation.
</Note>

<Accordion title="Documentation sources">
  * src/routes/rh.tsx
</Accordion>
