搬家之后注意到的一个小细节,之前用lighttpd时没太在意这个细节,今天发现了博客http返回头里有些不必要的信息,比如:
Server: Apache 2.4.XXX OpenSSL XXX
X-Powered-By: PHP/X.X.XX
顺手查了下隐藏掉的方法:
首先是Apache的,修改配置文件 /etc/httpd/conf/httpd.conf,加入
ServerTokens Prod
ServerSignature Off
重启httpd服务即可,接下来是PHP,修改配置文件/etc/php.ini,找到
Continue reading…