如何使用c#检查当前URL是否有子域名?
我需要检查当前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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是您要找的吗?
String.Split 文档
请注意,您需要将其更改为如果可能的话,会有多个子域,IE
http://subsub.sub.dom.tld/
或类似的东西。Is this what you're looking for?
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.你不能这样做,考虑这些例子,一个是域,另一个是子域
co.uk 是英国 TLD
,hp.hr 可能是在克罗地亚注册的惠普网站
You can't do that, consider these examples, one is a domain and other is subdomain
co.uk is United Kingdom TLD
and hp.hr could be Hewlett-Packard site registered in Croatia
子域到底是什么意思?
你可以这样做:
这是你想要的吗?
Subdomain in what sense exactly?
You could do:
Is that what you want?