我在C#中开发了一个Web控制器,用于处理来自Internet的HttpRequest。 该控制器由Windows Authentification保护。
我希望Controller将客户端重定向到另一个也受Windows身份验证保护的IIS。
我使用了这条指令:
HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.Found);
response.Headers.Location = new Uri("http://otherwebsite");
return response;
另一个网站与控制器位于同一个局域网中但具有相同的Internet URL。 有没有办法将Windows凭据传递给重定向响应?
谢谢!