更改http标头信息以隐藏服务器信息

发布于 2024-12-25 17:40:10 字数 134 浏览 1 评论 0原文

我的问题是我是否可以省略使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满天都是小星星 2025-01-01 17:40:10

我不知道使用 PHP 来执行此操作是否是正确的方法。服务器是否运行 Apache?如果是这样,您可以将以下选项添加到您的配置文件中以隐藏服务器信息:

ServerTokens ProductOnly
ServerSignature Off

要隐藏 PHP 信息,请编辑 php.ini 并添加以下行:

expose_php Off

或者,如果此选项已存在,请从

参考: 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:

ServerTokens ProductOnly
ServerSignature Off

To hide PHP info, edit your php.ini and add the line:

expose_php Off

Or, if this option already exists, change from On to Off.

Reference: http://www.debianadmin.com/apache-tipshide-apache-information-php-software-version.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文