Remove "Server:" from response headers in Apache server
I am trying to remove "Server:" Header from Apache response headers. I found a lot of tutorials there but all of them shows how to hide version information from "Server" header.
So far I tried:
ServerSignature Off
ServerTokens ProductOnlyBut it still outputs "Server: Apache" in response headers.
Is there any way I can completely turn this header off?
11 Answer
Use mod_headers, configure with (second is for error conditions like not found):
Header unset Server
Header always unset Server 2