Redirection

Please note: This page is under construction and has not been finished yet.

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

$url = "https://www.yourwebsite.com".
e107::redirect($url);
  • To redirect to the homepage, simply leave the URL blank.

e107::redirect();
  • To redirect to the Admin Area, use the value 'admin'.

e107::redirect('admin');

Last updated