HTTP_ACCEPT: text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
HTTP_ACCEPT_CHARSET: ISO-8859-1,utf-8;q=0.7,*;q=0.7
HTTP_ACCEPT_ENCODING: gzip
HTTP_ACCEPT_LANGUAGE: en-us,en;q=0.5
HTTP_CACHE_CONTROL: no-cache
HTTP_CONNECTION: close
HTTP_HOST: www.appcontrols.com
HTTP_PRAGMA: no-cache
HTTP_USER_AGENT: CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
HTTP_X_CC_ID: ccc03-02
HTTP_X_FORWARDED_FOR: 38.107.179.231
HTTP_X_REAL_IP: 38.107.179.231


If you wish to test HTTP headers on your HTTP server, you can use the same simple Perl script.
Code is following (cut and paste it):


#!/usr/bin/perl

print "Content-type: text/html\n\n";

foreach $key (sort keys %ENV) {
  if ($key =~ /HTTP_/) { # Only HTTP_xxx
    print "$key: $ENV{$key}<br>\r\n";
  }
}

Any questions? Please contact us.