Celeb Glow
news | March 13, 2026

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 ProductOnly

But it still outputs "Server: Apache" in response headers.

Is there any way I can completely turn this header off?

1

1 Answer

Use mod_headers, configure with (second is for error conditions like not found):

Header unset Server
Header always unset Server
2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy