Vijay Mandanka
Vijay Mandanka

Reputation: 113

Getting 404 error on asp .net core application after changing https port

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

Answers (1)

DHRUVI INDORWALA
DHRUVI INDORWALA

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:

  1. dotnet restore
  2. dotnet run

Upvotes: 2

Related Questions