Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这应该很简单,所以我必须缺少一些基本的东西。在我的 OWIN 应用程序中,我想要一个重定向到主页 (index.html) 的包罗万象。
我看不到任何方法
public Task Invoke(IDictionary<string, object> environment)
返回响应代码的方法。
关于 OWIN 规范,您必须设置
environment["owin.ResponseStatusCode"] = 200;
见http://owin.org/spec/owin-1.0.0.html#_3.2._Environment