标签:
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "image/JPEG";
// 获取文件服务器端物理路径
string FileName = context.Server.MapPath(context.Request.FilePath);
// 如果UrlReferrer为空,则显示一张默认的禁止盗链的图片
if (context.Request.UrlReferrer.Host == null)
{
context.Response.WriteFile("~/img/error.jpg");
}
else
{
// 如果 UrlReferrer中不包含自己站点主机域名,则显示一张默认的禁止盗链的图片
if (context.Request.UrlReferrer.Host.IndexOf("localhost") > -1)
{
context.Response.WriteFile(FileName);
}
else
{
context.Response.WriteFile("~/img/error.jpg");
}
}
}
标签:
原文地址:http://www.cnblogs.com/wang1820feng/p/4685840.html