.Request.Url.Host不显示子域名
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.Request.Url.Host不显示子域名相关的知识,希望对你有一定的参考价值。
我已经在我的applicationhost.config中设置了绑定,让子域工作我的项目,我在本地测试。
<bindings>
<binding protocol="http" bindingInformation="*:62914:localhost" />
<binding protocol="http" bindingInformation="*:62914:de.localhost" />
</bindings>
我可以通过子域访问该站点,并看到它在localhost上运行。
我希望能够阅读子域名。我使用了以下代码。
var host = HttpContext.Current.Request.Url.Host;
var index = host.IndexOf(".");
string[] segments = HttpContext.Current.Request.Url.PathAndQuery.Split('/');
if (index < 0)
return null;
var subdomain = host.Substring(0, index);
return subdomain;
问题是HttpContext.CurrentRequest.Url
在字符串中没有子域。
我怎样才能阅读子域名?
答案
使用Request.Url.AbsoluteUri,您可以获得包含子域名的完整URL。完整的方法描述here。
以上是关于.Request.Url.Host不显示子域名的主要内容,如果未能解决你的问题,请参考以下文章