-
Archives
- April 2019
- January 2019
- June 2018
- January 2018
- July 2017
- April 2017
- December 2016
- August 2016
- February 2016
- September 2015
- April 2015
- February 2015
- September 2014
- February 2014
- January 2014
- December 2013
- November 2013
- July 2013
- June 2013
- March 2013
- February 2013
- January 2013
- October 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- September 2011
- July 2011
- May 2011
- April 2011
- March 2011
- February 2011
- September 2010
-
Meta
Monthly Archives: April 2011
HTTP Redirects
Each HTTP response produced by a web site contains status code. Browser uses that code to interpret the meaning of the response. Basically there can be three different cases:
The request has been processed successfully by the server and the response body contains the requested resource (web page, image, etc.).
An error has occurred.
Server redirects the request to a new URL.
In the latter case the response contains a special “Location” header in which the new URL is provided. When browser receives such response, it automatically issues a new request using the specified URL. This way it can be redirected even to a different web site. The whole thing is done automatically, so the user does not see the process in the browser window. […] Continue reading
Posted in Testing practice
Tagged HTML form, HTTP headers, HTTP redirect, HTTP status code, test execution, web form
Leave a comment