Проблема возникает при хостинге ASP.NET ядро 2.1 проект локально на компьютере?
Я сохранил свой проект asp на месте
C:\inetpub\wwwroot\ourtechroom
Потом, когда я бегу
localhost/ourtechroomв браузере я получил ниже ошибку.
HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid.
Detailed Error Information: Module IIS Web Core Notification BeginRequest Handler Not yet determined Error Code 0x8007000d Config Error Config File \\?\C:\inetpub\wwwroot\ourtechroom\web.config Requested URL http://localhost:80/ourtechroom Physical Path C:\inetpub\wwwroot\ourtechroom Logon Method Not yet determined Logon User Not yet determined
Помогите мне я попал в большую беду?
Мой web.config выглядит следующим образом:
<?xml version="1.0" encoding="utf-8"?> <configuration> <location path="." inheritInChildApplications="false"> <system.webServer> <handlers> <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" /> </handlers> <aspNetCore processPath="dotnet" arguments=".\OurTechRoom.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" /> </system.webServer> </location> </configuration> <!--ProjectGuid: a4eff15f-7cc7-44e3-9939-904c7255382d-->
Что я уже пробовал:
Я пытался просто создавать index.html внутри папки wwwroot Inetpub я могу получить доступ к этому файлу через localhost/index.html но при попытке получить доступ к вышеуказанному url ie
http://localhost/ourtechroom[^]
Я получаю выше ошибки.
Я также попытался решить эту проблему с помощью решения, заручившегося нижеприведенными сайтами:
https://support.microsoft.com/en-gb/help/942055/http-error-500-19-error-when-you-open-an-iis-7-0-webpage[^]