Reputation: 113
In IIS manager , I changed port of https from 443 to 9000, but after changing it it is giving me 404 error.
Upvotes: 0
Views: 293
Reputation: 36
You can do troubleshooting step is to find out whether the problem is with your .NET Core application or with your IIS Hosting configuration.
Try below steps from the root of your project:
dotnet restore
dotnet run
Upvotes: 2