Knowledgebase: Miscellaneous
How to redirect users to another page?

To setup a simple redirect, simply create an index.php file in the directory you wish to redirect from with the following content:

<?php header("Location: http://www.redirecturlhere.com/"); ?>

* Please take note that http://www.redirecturlhere.com is the URL you wish the users to be redirected too.


This can also be a file within a directory/folder:

<?php header("Location: yourdirectory/anotherfile.php"); ?>