如何隐藏 HTTP header 中发送包含在 Server 信息里面的 Apache 和 PHP 版本号(譬如我们可以到 Firefox 的附加工具里面找
Live HTTP Headers;还可以用curl -I IPaddress|http://域名 ) 下面是做法:
Apache:
打开 httpd.conf,在文件最后加入以下代码:
#Hidden I can with apache version number
ServerTokens ProductOnly
ServerSignature Off
|
PHP:
隐藏 PHP 版本就是隐藏类似于 "X-Powered-By: PHP/5.1.2-1+b1" 这个,开启 php.ini,加入:
阅读(992) | 评论(0) | 转发(0) |