隱藏Apche、Nginx、PHP的版本號提高網站安全性

OldBoy~發表於2018-01-19

隱藏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~

 

相關文章