作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在这里搜索SO,但似乎找不到该问题的答案。我花了很长时间才弄清楚是否有一种方法可以将HttpContext.Current.Request.Url
的主要范围提供给我?
例子:
http://www.example.com> example.com
http://test.example.com> example.com
http://example.com> example.com
提前致谢。
编辑
只是澄清一下。这仅在我自己的域上使用,而不会在现有的每个域上使用。
目前需要处理三个后缀。
最佳答案
public static void Main() {
var uri = new Uri("http://test.example.com");
var fullDomain = uri.GetComponents(UriComponents.Host, UriFormat.SafeUnescaped);
var domainParts = fullDomain
.Split('.') // ["test", "example", "com"]
.Reverse() // ["com", "example", "test"]
.Take(2) // ["com", "example"]
.Reverse(); // ["example", "com"]
var domain = String.Join(".", domainParts);
}
关于.net - ASP.NET : How can I get the domain name without any subdomains?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4581069/
我是一名优秀的程序员,十分优秀!