为什么我无法从我的Webapi重定向给定的URL

时间:2019-02-13 13:24:54

标签: c# asp.net-web-api

        public HttpResponseMessage Get()
        {
            var response = Request.CreateResponse(HttpStatusCode.Moved);
            response.Headers.Location = new Uri("www.google.com");
            return response;
        }

这就是为什么我无法重定向到该网址 谢谢你

1 个答案:

答案 0 :(得分:0)

代码

new Uri("www.google.com")

抛出System.UriFormatException,如果未指定方案。只需添加方案即可使用

new Uri("http://www.google.com")