Opentopia Directory Encyclopedia Tools

URL redirection

Encyclopedia : U : UR : URL : URL redirection


URL redirection is a technique on the world wide web for making a web page available under many URLs.

Purposes

There are several reasons for a webmaster to use redirection:

Similar domain names

Users might search for the same information under slightly different URLs, e.g. gooogle.com and googel.com. An organisation can register these domains and re-direct them to the correct location: google.com.

Moving a site to a new domain

A Web site might change its domain name for several reasons. An author might move his pages to a different section of the same site. With URL redirects, you can direct incoming links from other sites to the new location.

The same applies to search engines: They have crawled your old domain and send visitors to the URLs that they found then. By using a "moved permanently" redirect to the new URL, visitors will still find your pages. Also, in the next crawl, the search engine will use the new URLs instead of the old ones.

Logging outgoing links

The access logs of a web server keep detailed information from where your visitors came, how they browsed your site -- but not to which sites they left by following a link on your pages. This is because the browser has no need to communicate with your server when the visitor clicks on an out-going link.

With a gateway page, you can capture this information: Instead of sending the visitor straight to the other site, you direct him to a URL on your domain that affects an automatic redirect to the real target. Except for the delay of the additional request to your server, the visitors don't see a difference. However, they leave a trace in your server logs.

Note: There are other techniques besides redirects that achieve the same goal of logging outgoing links.

Short, meaningful, persistent aliases for long or changing URLs

Currently, web engineers tend to pass descriptive attributes in the URL to represent data hierarchies, command structures, transaction paths and session information. This results in an URL that is aesthetically unpleasing and difficult to remember. Sometimes the URL of a page changes even though the contents stays the same.

Several websites such as TinyURL started offering URL aliasing services. These sites allow the end users to submit long URLs in a web form and receive a simplified representation of the Url redirected by the site's web server. This new URL is often shorter, easier to remember, and more descriptive than the original page URL.

Response pages for scripts

Often, there are technical reasons for cgi-scripts to generate redirects instead of the page that the visitor will see:

Of course, there are many more cases where web application use redirects.

Self-updating pages and slide shows

Some redirection methods allow a timer. This feature can be used to re-load a page every few seconds, keeping the displayed information up-to-date. Similiarily, one can link a sequence (or cycle) of pages with timed redirects producing an automatic slide show, without the need of user action.

Manipulating search engines

Some years ago, redirect techniques were used to fool search engines. For example, one page could show popular search terms to search engines but redirect the visitors to a different target page. There are also cases where redirects have been used to "steal" the page rank of one popular page and use it for a different page.

Of course, search engine providers noticed the problem and took appropriate actions: Usually, sites that employ such techniques to manipulate search engines are punished automatically by reducing their ranking or by excluding them from the search index.

As a result, today, such manipulations usually result in less rather than more site exposure.

Manipulating visitors

URL redirection is sometimes used as a part of phishing attacks that confuse visitors about which web site they are visiting.

Techniques

There are several techniques to implement a redirect. In many cases, Refresh meta tag is the simplest one. Note, however, that there are weighty opinions that discourage this methods (see below).

Manual redirect

The simplest technique is to ask the visitor to follow a link to the new page:

Please follow link!
This method is often used as a fallback for one of the following methods: If the visitor's browser does not support the automatic redirect method, the visitor can still reach the target document by clicking on the link.

HTTP status codes 3xx

In the HTTP computer protocol used by the World Wide Web, a redirect is a response with a status code beginning with 3 that induces a browser to go to another location.

The [HTTP standard] defines several [status codes] for redirection:

All of these status codes require that the URL of the redirect target is given in the Location: header of the HTTP response. The 300 multiple choices will usually list all choices in the body of the message and show the default choice in the Location: header.

Within the 3xx range, there are also some status codes that are quite different from the above redirects (they are not discussed here with their details):

Here is a sample of a HTTP response that uses the 301 "moved permanently" redirect:

HTTP/1.1 301 moved permanently
Location: http://www.wikipedia.org/
Content-type: text/html
Content-length: 78

Please follow link!

Notes:

A previous version of this document contained the following advice:

The HTTP protocol requires that the redirect be sent all by itself, without any web page data. As a result, the web programmer who is using a scripting language to redirect the user's browser to another page must ensure that the redirect is the first or only part of the response. In the popular ASP scripting language, this can also be accomplished using the methods response.buffer=true and response.redirect "http://www.example.com". Using PHP, the popular open source language, one can use header("Location: http://www.example.com");.

This information appears to be incorrect. but in PHP, does work.

Refresh Meta tag and HTTP refresh header

Netscape introduced a feature to refresh the displayed page after a certain amount of time. It is possible to specify the URL of the new page, thus replacing one page after some time by another page:

A timeout of 0 seconds means an immediate redirect.

Here is an example of a simple html document that uses this technique:



Please follow link!

Notes:

Here is an example of achieving the same effect by issuing a HTTP refresh header:

HTTP/1.1 200 ok
Refresh: 0; url=http://www.example.com/
Content-type: text/html
Content-length: 78

Please follow link!

This response is easier to generate by CGI programs because one does not need to change the default status code. Here is a simple CGI program that affects this redirect:
  1. !/usr/bin/perl
print "Refresh: 0; url=http://www.example.com/\r\n"; print "Content-type: text/html\r\n"; print "\r\n"; print "Please follow link!"
Note: Usually, the HTTP server adds the status line and the Content-length header automatically.

Note: This method is considered by the W3C to be a poor method of redirection, since it does not communicate any information about either the original or new resource, to the browser (or search engine). The W3C's [Web Content Accessibility Guidelines (7.4)] discourage the creation of auto-refreshing pages, since most web browsers do not allow the user to disable or control the refresh rate.

JavaScript redirects

JavaScript offers several ways to display a different page in the current browser window. Quite frequently, they are used for a redirect. However, there are several reasons to prefer the refresh meta tag (whenever it is possible) over JavaScript redirects:

Frame redirects

A slightly different effect can be achieved by creating a single html frame that contains the target page:



<pre>Please follow <a href="http://www.example.com/">link</a>! </pre>

One main difference to the above redirect methods is that for a frame redirect, the browser displays the URL of the frame document and not the URL of the target page in the URL bar.

This technique is sometimes called "cloaking".

Redirect loops

It is quite possible that one redirect leads to another redirect. For example, the URL http://www.wikipedia.com/wiki/URL_redirection (note the differences in the domain name) is first redirected to http://www.wikipedia.org/wiki/URL_redirection and again redirected to the correct URL: http://en.wikipedia.org/wiki/URL_redirection. This is appropriate: the first redirection corrects the wrong domain name. The second redirection selects the correct language section. Finally, the browser displays the correct page.

Sometimes, however, a mistake can cause the redirection to point back to the first page, leading to an infinite loop of redirects. Browsers usually break that loop after a few steps and display an error message instead.

The [HTTP standard] states:

Services

Sometimes, you can use one of the above methods without rolling it all on your own: Use a service that does the technical work for you:

Wikipedia redirects

Wikipedia contains pages whose sole purpose is to [Redirectredirect] the user's browser to a different page. They exist to allow users to enter alternate spellings or names for articles, and redirect them promptly to the article they were most likely looking for. Help with this feature is found by clicking the [Redirectredirect] link.

URL redirection services

URL redirection services exist to shorten long URLs.

Some web publishers have criticized the use of these services, arguing that replacing an URL with an encoded shortcut effectively erases information from a document. However, when a proper HTTP Header is used such as a 302 redirect, then no harm is done.

URL obfuscation services

There exist redirection services for hiding the referer using META refresh.

Apache module mod_rewrite

[mod_rewrite] is a popular Apache module for redirections.

External Links

 


From Wikipedia, the Free Encyclopedia. Original article here. Support Wikipedia by contributing or donating.
All text is available under the terms of the GNU Free Documentation License See Wikipedia Copyrights for details.

Search Titles
0123456789
ABCDEFGHIJ
KLMNOPQRST
UVWXYZ?

E-mail this article to:

Personal Message: