Status
Not open for further replies.

vgkumar

Member
21
2013
1
0
When the location of a page has been changed, then the site is redirected to inform the search engines that the switch over has happened. This is done using 301 or 302, as the case may be.
 
9 comments
Accepting input from a source other than the standard input or sending output to a destination other than the standard output. Use the less than sign (() for redirection of input and the greater than sign ()) for redirection of output.
 
Redirection can be useful when you want to keep your visitors in your website. For instance, when a visitor clicked a broken link from another website to your site, the visitor could be seamlessly redirected to an available page to discourage him from moving away. Redirection can be done in php codes or by using declaring the redirection codes in a .htacess file.
 
On a Web site, redirection is a technique for moving visitors to a different Web page than the one they request, usually because the page requested is unavailable. Web users often encounter redirection when they visit the Web site of a company whose name has been changed or which has been acquired by another company.
 
On a Web site, redirection is a technique for moving visitors to a different when its address has been changed and visitors are familiar with the old address.
 
In operating system shells, redirection refers to directing input and output to files and devices other than the default I/O devices. By default, input generally comes from the keyboard or mouse, and output goes to the display monitor. With a redirection operator, you can override these defaults so that a command or program takes input from some other device and sends output to a different device.
 
Last edited:
Hello..
redirection means forwarding requested address to the different address...

There are basic two types of redirection
1) 301(permanent redirection)
2) 302 (temporary redirection)...
 
For instance, when a visitor clicked a broken link from another website to your site, the visitor could be seamlessly redirected to an available page to discourage him from moving away. Redirection can be done in php codes or by using declaring the redirection codes in a .htacess file.
 
301 mean that the resource (page) is moved permanently to a new location.

302 means that the resource is temporarily located somewhere else, and the client/browser should continue requesting the original url.
 
Status
Not open for further replies.
Back
Top