Redirection

Dismounted

59.***.***.***
1,440 days ago

Redirection

Redirection This will instantly redirect you to another page using headers.

PHP code:

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

It's as easy as that!

Bill

80.***.***.***
1,439 days ago
Would just like to mention to the benefit of any newbies that the header() function will fail if you have already closed the header portion of the response, for example by echoing/printing something.

Also, any referrer information the redirected client had will carry over to the new URL.

Dismounted

59.***.***.***
1,439 days ago
Yes, forgot to note that ALL header functions (regardless of what) needs to go at the very TOP of the page, not a few lines down, AT THE TOP.