IIS搭建Http服务配置Web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="true" />
</system.webServer>
<system.web>
<authentication mode="Windows" />
<identity impersonate="false" />
</system.web>
</configuration>

原文地址:https://www.cnblogs.com/zylstu/p/12854714.html