Let me preface this question by stating that I want to temporarily disable the title and be fully aware of the consequences for browsers, caching mechanisms, etc., if the title is missing.
I need to check the caching behavior if the header is Content-Lengthmissing from the HTTP response. Is there a way to disable the header?
My first attempt was to simply install it on 0using PHP and header("Content-Length: 0", true);, but it’s not the same as completely removing the header from the response.
Can I disable / delete the title?
source
share