When a Web server responds to a HTTP request, the response typically consists of a status line, some response headers, a blank line, and the document. A typical response looks like this − HTTP / 1.1 200 OK Content - Type : text / html Header2 : ... ... HeaderN : ... ( Blank Line ) <! doctype ...> <html> <head> ...</ head > <body> ... </ body > </ html > The status line consists of the HTTP version (HTTP/1.1 in the example) , a status code (200 in the example) , and a very short message corresponding to the status code (OK in the example) . Following is a summary of the most useful HTTP 1.1 response headers which go back to the browser from the web server. These headers are frequently used in web programming − S.No. Header & Description 1 Allow This header specifies the request methods ( GET, POST , etc.) that the server supports. 2 Cache-Control This header specifies the circumstances in w...
PhD || Artificial Intelligence, Machine Learning, Soft Computing, Quantum Machine Learning, Data Sciences.