This is what your client sends to our servers.
Host: serverstuff.info Accept-Encoding: gzip, br, zstd, deflate User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) Accept: */*
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.