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.
我"Request.UrlReferrer.AbsoluteUri"在我的项目中使用来获取托管我的应用程序的 URL。如果我从“http”主机重定向,我可以获得 URL,但如果我从“https”主机重定向,我会得到空值。我怎样才能"UrlReferrer AbsoluteUri"同时获得“http 和 https”?
"Request.UrlReferrer.AbsoluteUri"
"UrlReferrer AbsoluteUri"
使用 fiddler 等支持 https 的检查器检查实际的 http 数据。许多浏览器在通过 https 通信时根本不发送引荐来源网址,在这种情况下根本无法获得它。
如果您拥有原始站点,则可以在查询字符串中添加一些内容作为替代,但仅此而已。