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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://help.kajabi.com/feedback

```json
{
  "path": "/articles/website/pages/how-can-i-redirect-a-page",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# How can I redirect a page?

> Learn two methods to redirect a page on Kajabi using Custom Code Block or Code Editor.

You can redirect a page in two ways:

***

## Option 1: Using Custom Code Block (Recommended)

1. Go to Website > **Pages**
2. Open your page editor
3. Click **Add Section** from the sidebar
4. Select "Custom Code" and click **Add**
5. Click on the Custom Code Block
6. In the Code field, add this redirect code:
   * `<script>window.location.href = "https://www.example.com";</script>` (replace with your URL)
7. Click **Save**

***

## Option 2: Using Code Editor (Pro Plan required)

1. Go to Website > **Pages**
2. Click ... next to your page > **Modify code**
3. Open Snippets > **global\_head.liquid**
4. Inside the `<head>` tags, insert the following code:
   * `<script>window.location.href = "https://www.example.com";</script>` (replace with your URL)
5. Click **Save**

<Warning>
  **Important:** With a redirect in place, you won't be able to customize your page normally in our editor until you remove the redirect code.
</Warning>
