Skip to main content

Permanent (301) and Temporary (302) Redirection Using PHP

Redirection is the method of forwarding users to a new domain or URL when they try to reach the old one.

Suppose my friend Ralph had once created a website at:

ralphhaynes.com

and after sometime created yet another website on the sub domain:

blog.ralphhaynes.com

Now he wants to have his blog (second website) on a new separate domain name. Since he already has lots of readers who visit the old URL, he has to find some way to let them know the new URL. The easiest way yet the most effective would be to use Redirection.

Actually, there are two types of redirection, permanent and temporary. In the above case when Ralph wanted to permanently move to a new domain he should use Permanent Redirection. In some other cases when webmasters have to move from, say a domain to a sub domain due to some temporary problems they could use Temporary Redirection.

301 Permanent Redirection

‘301’ here is the HTTP response code sent by the server to the client. Server sends HTTP codes for each request received from the client. These codes reflect the type of response received from the server. Some other codes sent are 200(OK), 404 (Not Found), 50x (Sever Problems etc.

When redirected in this manner many web applications such as browsers (Bookmarks actually), Search Engines etc. Update their data to have the new domain instead of the old one. Thus Permanent Redirection is also a way to tell these application especially Search Engines that a particular site has moved to a new address.

The following PHP code can be used to do this:

<?php
// 301 Permanent Redirection Using PHP Script
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://example.com/");

exit;
?>

Put this script as ‘index.php’ on the root of the old domain. Be sure to change ‘http://example.com/’ to whatever you’d like to redirect to.

302 Temporary Redirection

First off, Temporary doesn’t mean that the redirection would stop automatically or anything; in fact you can use a Temporary Redirection forever, it just means that you plan to redirect for a short period of time and therefore browsers and Search Engines do not need to make any changes to their data.

Use the following code to achieve this:

<?php
// 302 Temporary Redirection Using PHP Script
header("Location: http://example.com/");

exit;
?>

Again don’t forget to change ‘http://example.com/’.

One thing to note here is, there is no difference in how user would get redirected in the two types of redirections. In both the cases user will reach the new URL, difference is for how long you’ve planned to do so. If you’ve permanently moved to a new URL and use 301 redirection, address in browsers, search engines etc. will change and eventually there would be no trace of the old URL.

Previous Articles:

Popular posts from this blog

Fix For Toshiba Satellite "RTC Battery is Low" Error (with Pictures)

RTC Battery is Low Error on a Toshiba Satellite laptop "RTC Battery is Low..." An error message flashing while you try to boot your laptop is enough to panic many people. But worry not! "RTC Battery" stands for Real-Time Clock battery which almost all laptops and PCs have on their motherboard to power the clock and sometimes to also keep the CMOS settings from getting erased while the system is switched off.  It is not uncommon for these batteries to last for years before requiring a replacement as the clock consumes very less power. And contrary to what some people tell you - they are not rechargeable or getting charged while your computer or laptop is running. In this article, we'll learn everything about RTC batteries and how to fix the error on your Toshiba Satellite laptop. What is an RTC Battery? RTC or CMOS batteries are small coin-shaped lithium batteries with a 3-volts output. Most laptops use

The Best Way(s) to Comment out PHP/HTML Code

PHP supports various styles of comments. Please check the following example: <?php // Single line comment code (); # Single line Comment code2 (); /* Multi Line comment code(); The code inside doesn't run */ // /* This doesn NOT start a multi-line comment block /* Multi line comment block The following line still ends the multi-line comment block //*/ The " # " comment style, though, is rarely used. Do note, in the example, that anything (even a multi-block comment /* ) after a " // " or " # " is a comment, and /* */ around any single-line comment overrides it. This information will come in handy when we learn about some neat tricks next. Comment out PHP Code Blocks Check the following code <?php //* Toggle line if ( 1 ) {      // } else {      // } //*/ //* Toggle line if ( 2 ) {      // } else {      // } //*/ Now see how easy it is to toggle a part of PHP code by just removing or adding a single " / " from th

Introduction to Operator Overloading in C++

a1 = a2 + a3; The above operation is valid, as you know if a1, a2 and a3 are instances of in-built Data Types . But what if those are, say objects of a Class ; is the operation valid? Yes, it is, if you overload the ‘+’ Operator in the class, to which a1, a2 and a3 belong. Operator overloading is used to give special meaning to the commonly used operators (such as +, -, * etc.) with respect to a class. By overloading operators, we can control or define how an operator should operate on data with respect to a class. Operators are overloaded in C++ by creating operator functions either as a member or a s a Friend Function of a class. Since creating member operator functions are easier, we’ll be using that method in this article. As I said operator functions are declared using the following general form: ret-type operator#(arg-list); and then defining it as a normal member function. Here, ret-type is commonly the name of the class itself as the ope