摘要: 1.简单,但是会丢失请求数据 protected void Application_BeginRequest() { string url = HttpContext.Current.Request.Url.AbsoluteUri.ToString(); if (url.ToLower().Contains("cgi-bin")) { HttpContext.Current.Response.Redirect(url.Replace("-","")); } ... 阅读全文
posted @ 2014-01-13 11:51 zyip 阅读(452) 评论(0) 推荐(0)