Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTTP Error 500.19 with Error Code 0x8007000d visual studio 2017 while deploying .net core application

Tags:

I created default .net core application using visual studio 2017 and am trying to publish it, The application works perfectly when I start it with visual studio 2017, IIS Express. But when I publish the application I get the following error: enter image description here

I use somee.com free hosting.

Could anyone help me?

like image 934
Badri Neparidze Avatar asked Mar 19 '17 17:03

Badri Neparidze


2 Answers

Usually this error indicates that the ASP.NET Core Module is not installed on the server. Hosting ASP.NET Core application on IIS requires Microsoft ASP.NET Core Module. You should confirm that the module has been installed. Reference

like image 181
regnauld Avatar answered Sep 22 '22 22:09

regnauld


Installing IIS URL Rewrite (https://www.iis.net/downloads/microsoft/url-rewrite) helped me in this case.

like image 28
flam3 Avatar answered Sep 19 '22 22:09

flam3