Override Server Header

#1
I notice that in the standard version, I'm unable to override the Server HTTP header. Am I correct in my assumption that this limitation is removed in the paid version?
 

webizen

Well-Known Member
#2
you talk about server signature (in Admin Console->Configuration->Server->General). In Enterprise edition, it can be removed from server response header (Server Signature => Hide Full Header).
 
#3
OK, but in the Enterprise Version, could I override the Server header using an Apache configuration or PHP? For example, would both of these work:

Using PHP:
header("Server: Apache");

Using Apache Config:
header set Server Apache
 
Top