ASP.NET:HttpRequest.Url 截断尾随“.”人物

发布于 2024-11-26 02:40:20 字数 547 浏览 0 评论 0原文

如果到达 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灼疼热情 2024-12-03 02:40:20

您可以添加 relaxedUrlToFileSystemMapping 部分中的 web.config。

  <httpRuntime relaxedUrlToFileSystemMapping="true" />

这将保留 url 中的点。

但由于某种原因 Url.PathAndQuery 不会包含点,而 RawUrl 包含它们。

HttpContext.Current.Request.Request.RawUrl;

请记住,启用relaxedUrlToFileSystemMapping时可能会存在一些安全隐患。

You can add the relaxedUrlToFileSystemMapping to your web.config inside <system.web> section.

  <httpRuntime relaxedUrlToFileSystemMapping="true" />

This will preserve the dots in the url.

But for some reason Url.PathAndQuery wont contain the dots, while RawUrl contains them.

HttpContext.Current.Request.Request.RawUrl;

Keep in mind that there are probably some security implications when enabling relaxedUrlToFileSystemMapping.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文