ASP.net中怎么利用UrlRewrite實現(xiàn)防盜鏈功能,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
成都創(chuàng)新互聯(lián)公司是一家專注于成都網站建設、成都做網站與策劃設計,賀州網站建設哪家好?成都創(chuàng)新互聯(lián)公司做網站,專注于網站建設10多年,網設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:賀州等地區(qū)。賀州做網站價格咨詢:18982081108配置文件:
1 username
說明:
CheckType:要求驗證的類型(1:只驗證合法的域名,2:只驗證是否有cookies,3:同時驗證域名與cookies)
CookiesName:要驗證的cookies名稱,可為空。
UrlPattern:請求的URL格式。
UrlReplace:當下載無效時轉向的URL格式。
AllowHost:允許的來源域名。
Global.aspx中的配置:
void Application_BeginRequest(object sender, EventArgs e) { bool IsAllowDomain = false; bool IsLogin = false; string CookiesName = "UserName", AllowHost, ReferrerHost=""; int CheckType = 1; bool AllowDown = false; string[] AllowHostArr; string UrlPattern = "", UrlReplace = ""; string[] pattern, replace; string ConfigFile = ConfigurationManager.AppSettings["DownLoadConfig"]; if (ConfigFile != "") { try { System.Xml.XmlDataDocument XDConfig = new System.Xml.XmlDataDocument(); XDConfig.Load(AppDomain.CurrentDomain.BaseDirectory + @"/" + ConfigFile); if (XDConfig.SelectSingleNode("DownLoad/CheckType").InnerText != "") { CheckType = int.Parse(XDConfig.SelectSingleNode("DownLoad/CheckType").InnerText); } if (XDConfig.SelectSingleNode("DownLoad/CookiesName").InnerText != "") { CookiesName = XDConfig.SelectSingleNode("DownLoad/CookiesName").InnerText; } AllowHost = XDConfig.SelectSingleNode("DownLoad/AllowHost ").InnerText; AllowHostArr = AllowHost.Split('|'); UrlPattern = XDConfig.SelectSingleNode("DownLoad/UrlPattern").InnerText; UrlReplace = XDConfig.SelectSingleNode("DownLoad/UrlReplace").InnerText; pattern = UrlPattern.Split('@'); replace = UrlReplace.Split('@'); if (CookiesName == "") CookiesName = "UserName"; IsLogin = false.Equals(Request.Cookies[CookiesName] == null || Request.Cookies[CookiesName].Value == ""); if (Request.UrlReferrer != null) ReferrerHost = Request.UrlReferrer.Host.ToString(); if (AllowHostArr.Length < 1) { IsAllowDomain = true; } else { for (int HostI = 0; HostI < AllowHostArr.Length - 1; HostI++) { if (AllowHostArr[HostI].ToLower() == ReferrerHost.ToLower()) { IsAllowDomain = true; break; } } } switch (CheckType) { case 1: AllowDown = true.Equals(IsAllowDomain); break; case 2: AllowDown = IsLogin; break; case 3: AllowDown = true.Equals(IsAllowDomain && IsLogin); break; } if (AllowDown == false) { string oldUrl = HttpContext.Current.Request.RawUrl; string newUrl = oldUrl; for (int iii = 0; iii < pattern.Length; iii++) { if (Regex.IsMatch(oldUrl, pattern[iii], RegexOptions.IgnoreCase | RegexOptions.Compiled)) { newUrl = Regex.Replace(oldUrl, pattern[iii], replace[iii], RegexOptions.Compiled | RegexOptions.IgnoreCase); oldUrl = newUrl; } } this.Context.RewritePath(newUrl); } } catch { } } }
Web.Config中的配置:
IIS中的配置:
可執(zhí)行文件填入:c:/windows/microsoft.net/framework/v2.0.50727/aspnet_isapi.dll(視實際情況變動,與.aspx的一樣就成)
看完上述內容,你們掌握ASP.net中怎么利用UrlRewrite實現(xiàn)防盜鏈功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!