# Redirection

{% hint style="danger" %}
**Please note:** This page is under construction and has not been finished yet.
{% endhint %}

* You can redirect to a URL using the following static method:

```php
$url = "https://www.yourwebsite.com".
e107::redirect($url);
```

* To redirect to the homepage, simply leave the URL blank.

```php
e107::redirect();
```

* To redirect to the Admin Area, use the value 'admin'.

```php
e107::redirect('admin');
```
