ASP.NET:HttpRequest.Url 截断尾随“.”人物
如果到达 ASP.NET 应用程序的 URL 包含尾随句号 - '.',它们将从 HttpRequest 中的 Url 属性中被截断。
例如,如果 URL 为“http://server/folder.../”,则以下内容调用:
HttpContext.Current.Request.Url.PathAndQuery;
返回“/folder/”而不是“/folder.../”。
尝试过这个解决方案,但只有在建议的Uri之后构建时它才有帮助代码执行,而 HttpRequest 可能是在执行 ASP.NET Web 应用程序中的任何代码之前构建的。
关于如何保留尾随“.”的任何想法在 HttpRequest.Url 中?
If the URL that arrives to ASP.NET application contains trailing full stops - '.', they are truncated from the Url property in HttpRequest.
For example if the URL is "http://server/folder.../", the following call:
HttpContext.Current.Request.Url.PathAndQuery;
returns "/folder/" instead of "/folder.../".
Tried this solution, but it helps only if the Uri is constructed after the suggested code executes, while HttpRequest is probably constructed before any code in ASP.NET web application is executed.
Any ideas how to preserve trailing '.' in HttpRequest.Url?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加
relaxedUrlToFileSystemMapping
到
部分中的 web.config。这将保留 url 中的点。
但由于某种原因
Url.PathAndQuery
不会包含点,而 RawUrl 包含它们。请记住,启用
relaxedUrlToFileSystemMapping
时可能会存在一些安全隐患。You can add the
relaxedUrlToFileSystemMapping
to your web.config inside<system.web>
section.This will preserve the dots in the url.
But for some reason
Url.PathAndQuery
wont contain the dots, while RawUrl contains them.Keep in mind that there are probably some security implications when enabling
relaxedUrlToFileSystemMapping
.