Asp.net mvc 在特定域下运行.NET核心MVC(即。https://test.test.com)

Asp.net mvc 在特定域下运行.NET核心MVC(即。https://test.test.com),asp.net-mvc,asp.net-core-3.1,kestrel-http-server,Asp.net Mvc,Asp.net Core 3.1,Kestrel Http Server,我使用Kestrel在没有端口(或默认443)的特定域中运行web MVC应用程序,但我遇到了错误。 如果在启动设置时使用: "IdentityQuickStart": { "commandName": "Project", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Developm

我使用Kestrel在没有端口(或默认443)的特定域中运行web MVC应用程序,但我遇到了错误。 如果在启动设置时使用:

 "IdentityQuickStart": {
      "commandName": "Project",
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      },
      "applicationUrl": "https://asdass.rero.net"
    }

我明白了

如果我在另一个端口下运行,一切正常。为什么这个端口会发生这种情况

 "IdentityQuickStart": {
      "commandName": "Project",
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      },
      "applicationUrl": "https://asdass.rero.net:443"
    }