如何在没有root的情况下获取绝对url?

发布于 2024-12-08 16:02:52 字数 159 浏览 0 评论 0原文

我有这个根: http://localhost/foldername/about

我只想获取 /关于部分。

我该怎么做?

I have this root: http://localhost/foldername/about

I would like to get only the /about part.

How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

泪之魂 2024-12-15 16:02:52

使用 Uri.Segments 属性

Segments 属性返回一个字符串数组,其中包含
形成 URI 绝对路径的“段”(子字符串)。第一个
段是通过解析从第一个段开始的绝对路径获得的
字符,直到到达斜杠 (/) 或路径末尾。每个
附加段从前一个字符之后的第一个字符开始
段,并以下一个斜杠或路径末尾结束。 (一个
URI 的绝对路径包含主机和端口之后的所有内容
在查询和片段之前。)

Uri uriAddress1 = new Uri("http://localhost/foldername/about");
Console.WriteLine("The parts are {0}, {1}, {2}", uriAddress1.Segments[0], 
                  uriAddress1.Segments[1], uriAddress1.Segments[2]);

查看有关 Uri 类 MSDN 的更多信息

Use Uri.Segments Property

The Segments property returns an array of strings containing the
"segments" (substrings) that form the URI's absolute path. The first
segment is obtained by parsing the absolute path from its first
character until you reach a slash (/) or the end of the path. Each
additional segment begins at the first character after the preceding
segment, and terminates with the next slash or the end of the path. (A
URI's absolute path contains everything after the host and port and
before the query and fragment.)

Uri uriAddress1 = new Uri("http://localhost/foldername/about");
Console.WriteLine("The parts are {0}, {1}, {2}", uriAddress1.Segments[0], 
                  uriAddress1.Segments[1], uriAddress1.Segments[2]);

See more about Uri Class MSDN

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