如何隐藏“服务器” apache2 http响应头中的参数?
我的问题已在标题中提出。但我还想问,不是隐藏它,而是可以用自定义值替换它吗?也许通过 php 或通过编辑 apache2 配置?
提前致谢!
My question is posed in the title. But I ask also, instead of hiding it, isn't it possible to replace it by a custom value? Maybe over php or by editing the apache2 config?
Thank's in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Apache 的 mod_security,有一个名为 SecServerSignature 的指令,它允许您更改 Server 标头的值。
另一种方法是编辑源代码:)
You could use mod_security for Apache, there is a directive called
SecServerSignature
it allows you to change the value of theServer
header.Another way would be to edit the the source code :)