如果我去localhost然后我会看到默认的iis页面视图以证明iis有效。
我尝试设置一个名为“test”的网站,指向我的网站文件夹但不会。看下面的图像。能帮忙吗?
C:\Users\xxxx\Documents\\WebSite1
的web.config
<?xml version="1.0" encoding="UTF-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
<system.webServer>
<defaultDocument>
<files>
<add value="Default.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>