图片盗链


    public class ImageHttpHandler : IHttpHandler
    {
        #region IHttpHandler 成员

        public bool IsReusable {
            get { return true; }
        }

        public void ProcessRequest(HttpContext context) {
            string FileName = context.Server.MapPath(context.Request.FilePath);
            if (context.Request.UrlReferrer == null
                || string.IsNullOrEmpty(context.Request.UrlReferrer.Host)) {
                context.Response.ContentType = "image/JPEG";
                context.Response.WriteFile("~/images/no.gif");//被替换图片
            } else {
                if (context.Request.UrlReferrer.Host.IndexOf(SiteConfig.Currect.BaseConfig.Domain) > -1) {
                    //这里是你的域名
                    context.Response.ContentType = "image/JPEG";
                    context.Response.WriteFile(FileName);
                } else {
                    context.Response.ContentType = "image/JPEG";
                    context.Response.WriteFile("~/images/no.gif");
                }
            }
        }

        #endregion

原文地址:https://www.cnblogs.com/hqbird/p/1432138.html