This tutorial will teach you how to redirect one page to another instantly. This is the code that TutorialFx uses to redirect its users.
Whenever someone types in
www.tutorialfx.com, it will auto-matically bring them to
tutorialfx.com/forums.
If you would like to make one the same as ours, make a new document, and name it
index.php. Next, copy and paste the following code.
CODE
<?PHP
header("Location: http://www.site.com");
?>
Change www.site.com to the site that you want to redirect to.
Hope this helps