skip navigation

Apache Request and Response Headers

Most users don't realise that while browsing the WWW there is a constant conversation going on between the browser and the web server. Below you can see the specific Headers that were passed from your browser to our webserver and back when this page was requested.

Apache Request Headers

The following headers were sent by your browser when requesting this page:

HeaderValue
x-cc-idccc02-01
Hostwww.the-art-of-web.com
User-AgentCCBot/1.0 (+www.commoncrawl.org/bot.html)
Accepttext/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Languageen-us,en;q=0.5
Accept-Encodinggzip
Accept-CharsetISO-8859-1,utf-8;q=0.7,*;q=0.7
Connectionclose
Cache-Controlno-cache
Pragmano-cache

Output produced by the PHP function apache_request_headers.

Apache Response Headers

Our server sent the following headers in response to your request:

HeaderValue
Last-ModifiedSun, 22 Nov 2009 13:36:13 GMT

Output produced by the PHP function apache_response_headers.

Related Articles

References

< Back to System


Bookmark and Share

Feedback and Questions

26 September 2008: Bernhard Schulte says:

Actually your Apache did not send what your page says, but rather sent headers spilling the beans about the patchlevel of your OpenSSL install.

This page displays only the headers that were sent by your browser with the request, and those returned from our server by Apache - not the other server headers that you are referring to. But thanks for the tip, you'll find that those headers are now blocked (as they should be) by a ServerTokens directive


[top]