# Redirect

> Use the App Bridge redirect action to send merchants to another path inside the Shoplazza admin without breaking your Shoplazza App iframe context.

The Redirect action set enables you to redirect users to a relative path within the Shoplazza admin

## Setup

Develop an app at entry file.

```javascript
// Embed App entry file
import { app } from 'shoplazza-app-bridge';

app.init();
```

## Update Options

Redirect to other page.

```javascript
import { redirect } from 'shoplazza-app-bridge';

redirect('/products')
```
