Apache

编辑配置文件 例如 httpd-default.conf
ServerTokens Prod
ServerSignature Off

NGINX

编辑配置文件 例如 nginx.conf
server_tokens off;
这个可以加在 http 段,也可以加在 server 段

PHP

编辑配置文件 例如 php.ini
expose_php Off