---
title: "lfRedirect"
canonical: "https://support.appfire.com/space/PSJ/15480485/lfRedirect"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | lfRedirect(url) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Redirects to the specified URL.

Redirects to the specified URL.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| url | String | Yes | Redirect URL |

## Return Type

**None**

## Examples

### Example 1

Here's an example with a redirect to our Products website:

```javascript
lfRedirect("https://www.appfire.com/");
```

Redirecting to Jira dashboard:

```javascript
lfRedirect("/secure/Dashboard.jspa");
```

### Example 2

Redirecting to the DEMO project page:

```javascript
lfRedirect("DEMO");
```

Redirecting to the DEMO-1 issue page:

```javascript
lfRedirect("DEMO-1");
```

## See also

> Macro (contentbylabel)