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模块

下载地址:https://www.iis.net/downloads/microsoft/url-rewrite

版权声明:
作者:鲤小牛
链接:https://yunweiba.com/63.html
来源:运维吧
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>