public HttpResponseMessage Get()
{
var response = Request.CreateResponse(HttpStatusCode.Moved);
response.Headers.Location = new Uri("www.google.com");
return response;
}
这就是为什么我无法重定向到该网址 谢谢你
答案 0 :(得分:0)
代码
new Uri("www.google.com")
抛出System.UriFormatException
,如果未指定方案。只需添加方案即可使用
new Uri("http://www.google.com")