我目前正在使用IIS和Visual Studio Code,试图与我的Web应用程序建立成功的服务器连接。这些是我遵循的步骤:
以下文件“ web.config”在项目“ C:\ inetpub \ wwwroot \ website1”的目录中创建
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="true" />
<security>
<requestFiltering>
<hiddenSegments>
<add segment="_website1" />
</hiddenSegments>
</requestFiltering>
</security>
</system.webServer>
</configuration>
问题:
[如果您有任何信息,请告诉我。
我目前正在使用IIS和Visual Studio Code,试图与我的Web应用程序建立成功的服务器连接。这些是我遵循的步骤:在IIS中创建新连接...。