您现在的位置是:网站首页> 编程资料编程资料
ASP.NET实现301重定向方法_实用技巧_
2023-05-24
394人已围观
简介 ASP.NET实现301重定向方法_实用技巧_
关于百度等搜索引擎对于是否带"www"前缀的域名的识别问题:即搜索引擎会将www.abc.com和abc.com识别为不同的两个域名,这样做的后果就是分散了对网站的关注度,不利于网站的宣传和推广。
仅仅是通过Response.Redirect方法来重定向该连接,虽然可以将连接进行重定向,但是无法解决搜索引擎的识别分散问题的;此问题可通过301重定向来进行解决,具体在ASP.NET中可通过如下方法来处理:
private void CheckTopDomainName(HttpContext context) { Uri url = context.Request.Url; string host = url.Host.ToLower(); int count = host.Split('.').Length; bool doubleDomainName = host.EndsWith(".com.cn", StringComparison.CurrentCultureIgnoreCase) || host.EndsWith(".net.cn", StringComparison.CurrentCultureIgnoreCase) || host.EndsWith(".gov.cn", StringComparison.CurrentCultureIgnoreCase) || host.EndsWith(".org.cn", StringComparison.CurrentCultureIgnoreCase); if (count == 2 || (count == 3 && doubleDomainName)) { context.Response.Status = "301 Moved Permanently"; // 避免替换掉后面的参数中的域名 context.Response.AddHeader( "Location", url.AbsoluteUri.Replace( string.Format("http://{0}", host), string.Format("http://www.{0}", host) ) ); } 更多关于ASP.NET301实现的方法实例:
因为IIS设置301需要在服务器中配置很麻烦,所以ME选择了在程序中实现。
程序中实现有个缺点就是执行效率没有在IIS服务器中速度快。
当然了,这里说的只是适合动态网站的,如果都是.html静态文件就飘过吧!
好了还是直接上代码吧:
网页首页文件index.aspx后台代码
//判断是否是www.开头,如果不是301调整到www.域名 if (!System.Web.HttpContext.Current.Request.Url.ToString().StartsWith("http://www.")) { //301 重定向到 /目录下 HttpContext.Current.Response.StatusCode = 301; HttpContext.Current.Response.Status = "301 Moved Permanently"; HttpContext.Current.Response.AddHeader("Location", "http://www.qinquan.org/"); HttpContext.Current.Response.End(); }这里因为是我的独立站点,所以直接写www.了。如果是二级域名就需要根据需求自己修过了。
栏目页/内容页代码:
//如果url结尾不是以/符号结尾的,同样301到末尾增加/符号。
if (!System.Web.HttpContext.Current.Request.RawUrl.EndsWith("/")) { //301 重定向到 /目录下 HttpContext.Current.Response.StatusCode = 301; HttpContext.Current.Response.Status = "301 Moved Permanently"; HttpContext.Current.Response.AddHeader("Location", System.Web.HttpContext.Current.Request.RawUrl + "/"); HttpContext.Current.Response.End(); }您可能感兴趣的文章:
相关内容
- IIS实现反向代理时Cookie域的设置方法_实用技巧_
- ASP.NET MVC中异常处理&自定义错误页详析_实用技巧_
- .Net中的集合排序可以这么玩你知道吗_实用技巧_
- .Net Core使用OpenXML导出、导入Excel_实用技巧_
- .net core项目中常用的几款类库详解(值得收藏)_实用技巧_
- WebApiClient的接口输入验证方法_实用技巧_
- .Net 实现图片缩略图上传通用方法_实用技巧_
- 详解.Net Core中的日志组件(Logging)_实用技巧_
- webapi跨域使用session的方法示例_实用技巧_
- 如何利用HttpClientFactory实现简单的熔断降级_实用技巧_
