PHP Redirect

David Carr

1 min read - 17th Apr, 2011

Tutorial on PHP redirect to be redirected to another page or web site

For this tutorial lets suppose you have moved your web site to another domain and want your visitors to be redirected to your new domain you can use PHP for this purpose.

Here is the code to redirect a user:

header('Location: http://www.dcblog.dev');

Here's a breakdown of the code.

The <?php tells the browser to expect to receive php.

header ('Location: 'http://www.dcblog.dev'); tells the browser to redirect to the address given in the code and ?> tells the browser to finish expecting PHP.

0 comments
Add a comment

Copyright © 2006 - 2024 DC Blog - All rights reserved.