IIS下删除响应Header里面的Server Header

如果不考虑使用第三方控件实现,可以用PowerShell的方式:

Set-WebConfigurationProperty -pspath 'MACHINE/WEBROOT/APPHOST' -filter "system.webServer/security/requestFiltering" -name "removeServerHeader" -value "True"

大概是修改IIS的配置:

C:\Windows\System32\inetsrv\config\applicationHost.config

<system.webServer>
  <security>
     <requestFiltering removeServerHeader="true">
      //...
           <requestFiltering>
      <security>
<system.webServer>

  

 

posted @ 2020-05-20 17:35  OhMyJie  阅读(1561)  评论(0编辑  收藏  举报