IIS 删除服务器信息头

IIS 删除服务器信息头

我编写了以下 URL 重写模块来删除响应头中的服务器版本信息。

    <rewrite>
      <outboundRules>        
         <rule name="Remove Server header">
           <match filterByTags="None" serverVariable="" pattern=".+" />
           <action type="Rewrite" value="" />
         </rule>        
      </outboundRules>
    </rewrite>

在正常流程中,此方法运行良好。但是,当出现错误页面(如 500 或 404)时,我能够看到 IIS 版本信息。

我也需要知道如何处理错误页面的重写。如有任何建议,我们将不胜感激

相关内容