执行此操作的最佳方法是在应用程序开头更新请求方案.像这样的东西:
app.Use((context, next) => { context.Request.Scheme = "https"; return next(); });