编辑Web.config文件

时间:2018-02-21 17:23:13

标签: iis asp.net-core .net-core

我有一个由visual studio 2017在.net核心应用程序

上生成的以下webconfig文件
<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
        </handlers>
        <aspNetCore processPath="dotnet" arguments=".\SportsStore.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
    </system.webServer>
</configuration>

<!--ProjectGuid: 5795049b-4d7e-4559-9010-f9134df11849-->

虽然发布成功但我在网页上得到以下内容

Detailed Error Information:
Module
   IIS Web Core
Notification
  BeginRequest
Handler
  Not yet determined
Error Code
  0x8007000d
Config Error

Config File
   \\?\C:\inetpub\wwwroot\sportstore\web.config
Requested URL
   http://localhost:80/sportstore
Physical Path
   C:\inetpub\wwwroot\sportstore
Logon Method
  Not yet determined
Logon User
 Not yet determined
Config Source:
 -1: 
  0: 

因为我已经只在apache上工作并且在Visual Studio的IIS express中构建,所以我不知道从哪里开始。互联网有太多的信息,我尝试了许多东西,但没有。

有什么建议吗?

0 个答案:

没有答案