HEADERS
Try and see what other web servers reply.

No consumers available for now, try again later.

loader

This is what your client sends to our servers.

Host: serverstuff.info
Accept-Encoding: br,gzip
If-Modified-Since: Wed, 11 Sep 2024 00:32:59 GMT
Accept-Language: en-US,en;q=0.5
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
User-Agent: CCBot/2.0 (https://commoncrawl.org/faq/)

This is what your client sends to the server when requesting this site. You can get this by using the following code function in php. It's not available in php-fpm though.

$headers = apache_request_headers(); foreach ($headers as $header => $value) { echo "$header: $value <br />\n"; }

For php-fpm you could use this...


You can view this in your chrome's developer tools ( F12 or ctrl+shift+i ) in the network tab.