我的请求网址是:http://domain.com/some/path%2Fescaped。
我想检索这个确切的 URL。我不希望它被解码,比如http://domain.com/some/path/escaped;我希望它像http://domain.com/some/path%2Fescaped一样编码。
我如何获得这个网址?我尝试过 Request.Path、Request.RawUrl、Request.Url.AbsoluteUri、Request.Url.OriginalString ......每个都提供解码的 URL,如http://domain.com/some/path/escaped。
我可以用 $_SERVER["REQUEST_URI"] 在 PHP 中得到它。