Redirect
Overview
Redirects user from a landing page to a specified URLSyntax
Redirect(1, 2)
| Ordinal | Type | Description | |
|---|---|---|---|
| 1 | string | Required | URL used in redirect |
| 2 | Boolean | Required | Indicates whether redirect is permanently enabled |
Examples
In this sample code, a landing page redirects the user to another site.
Redirect("http://example.com/index.html",false);
Enter the full URL for the page to which you redirect the user. If you provide only a general directory address, make sure you place a trailing slash after the URL, such as http://example.com/.