IIS8 隐藏server版本方法
设置方法
找到C:\Windows\System32\inetsrv\config\applicationHost.config里的system.webServer节点内添加以下代码
<rewrite>
<allowedServerVariables>
<add name="REMOTE_ADDR" />
</allowedServerVariables>
<outboundRules>
<rule name="REMOVE_RESPONSE_SERVER">
<match serverVariable="RESPONSE_SERVER" pattern=".*" />
<action type="Rewrite" />
</rule>
</outboundRules>
</rewrite>
注意一定要先安装安装IIS rewrite模块