Dario
Dario

Reputation: 153

How to remove date header from apache?

I need to minimize Apache HTTP response headers, by now i reduced them as following

HTTP/1.1 200 OK
Date: Thu, 25 Mar 2010 21:57:41 GMT
Server: Apache
Content-Type: text/html

I'd like to know if there is a way to disable Date and Server header, only for a certain virtual host.

Thank you!

Upvotes: 12

Views: 4303

Answers (1)

Robert Hafner
Robert Hafner

Reputation: 3895

The Date header is required at part of the HTTP standard. You can't remove it without being non-compliant with the http standard, so apache doesn't generally allow that.

Upvotes: 6

Related Questions