隱藏Apache版本號
在apache配置檔案httpd.conf中,加入以下程式碼
ServerTokens Prod
ServerSignature Off
隱藏Nginx版本號
在nginx的配置檔案nginx.conf 檔案裡的http內部,加入以下程式碼
http {
server_tokens off;
}
隱藏PHP版本號
在PHP的配置檔案php.ini 檔案裡找到配置項,expose_php,改為off
expose_php = Off
改好了之後記得分別重啟對應的服務~OK~