Request 的几种Url

var a = Request.Url.ToString();     全链接:Http://localhost:23457/MemberIndo/Index
var b = Request.Url.Authority;        域 名:Http://localhost:23457
var c = Request.UrlReferrer;       来源链接:Http://localhost:23457/Home/Index,如果直接输入网址,Request.UrlReferrer==null,但

                            Request.UrlReferrer不是特别可靠

var d = Request.RawUrl;           链 接:/MemberInfo/Index/

原文地址:https://www.cnblogs.com/tider1999/p/4397143.html