如何使用c#检查当前URL是否有子域名?

发布于 2024-08-12 09:22:47 字数 99 浏览 5 评论 0原文

我需要检查当前URL是否有子域名,如果有子域名,我想从URL中提取它。

谁知道如何在 ASP.NET MVC 应用程序中的 C# 中执行此操作。

谢谢。

I need to check whether the current URL has the subdomain name and if it has the subdomain, I want extract it from the URL.

Could anyone konw how to do this in the C# in an ASP.NET MVC app.

Thanks.

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

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

发布评论

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

评论(3

作业与我同在 2024-08-19 09:22:47

这是您要找的吗?

Uri fullPath = new Uri("http://subdomain.domain.topleveldomain/index.html");

string hostname = fullPath.Host; // returns "subdomain.domain.topleveldomain"

char[] separators = new char[]{'.'};

// returns {"subdomain","domain","topleveldomain"}
string[] domains = hostname.Split(separators); 

string subdomain = domains[0];
string domain = domains[1];
string tld = domains[2];

String.Split 文档

请注意,您需要将其更改为如果可能的话,会有多个子域,IE http://subsub.sub.dom.tld/ 或类似的东西。

Is this what you're looking for?

Uri fullPath = new Uri("http://subdomain.domain.topleveldomain/index.html");

string hostname = fullPath.Host; // returns "subdomain.domain.topleveldomain"

char[] separators = new char[]{'.'};

// returns {"subdomain","domain","topleveldomain"}
string[] domains = hostname.Split(separators); 

string subdomain = domains[0];
string domain = domains[1];
string tld = domains[2];

String.Split documentation

Note that you'll need to change it a bit if it's possible there will be more than one subdomain, I.E. http://subsub.sub.dom.tld/ or something like that.

孤蝉 2024-08-19 09:22:47

你不能这样做,考虑这些例子,一个是域,另一个是子域

域名.co.uk

子域名.hp.hr

co.uk 是英国 TLD

,hp.hr 可能是在克罗地亚注册的惠普网站

You can't do that, consider these examples, one is a domain and other is subdomain

domain.co.uk

subdomain.hp.hr

co.uk is United Kingdom TLD

and hp.hr could be Hewlett-Packard site registered in Croatia

最冷一天 2024-08-19 09:22:47

子域到底是什么意思?

你可以这样做:

Uri u = new Uri("http://sub.mydomain.com/path/file.htm");
if(i.Host == "sub.mydomain.com")
{ ... }

这是你想要的吗?

Subdomain in what sense exactly?

You could do:

Uri u = new Uri("http://sub.mydomain.com/path/file.htm");
if(i.Host == "sub.mydomain.com")
{ ... }

Is that what you want?

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