更改http标头信息以隐藏服务器信息
我的问题是我是否可以省略使用 php 在 http 标头中发送的服务器信息?我知道这本身并不危险,但请幽默一下。如果我想省略该信息,我该怎么做。如果我想插入虚假的服务器信息以引导潜在的有害用户误入歧途,该怎么办?我查看了 php 文档,但找不到它。谢谢。
My question is whether I can omit my server info from being sent in the http header using php? I know by itself it is not dangerous, but humor me. If I wanted to omit that information, how would I do this. How about if I wanted to insert false server information as to lead potential harmful users astray? I have looked at the php doc, but I could not find it. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道使用 PHP 来执行此操作是否是正确的方法。服务器是否运行 Apache?如果是这样,您可以将以下选项添加到您的配置文件中以隐藏服务器信息:
要隐藏 PHP 信息,请编辑
php.ini
并添加以下行:或者,如果此选项已存在,请从
开
到关
。参考: http://www.debianadmin.com/ apache-tipshide-apache-information-php-software-version.html
I don't know if using PHP to do this is the right approach. Is the server running Apache? If so, you can add the following options to your config file to hide server info:
To hide PHP info, edit your
php.ini
and add the line:Or, if this option already exists, change from
On
toOff
.Reference: http://www.debianadmin.com/apache-tipshide-apache-information-php-software-version.html