举一个例子,本例子使用httpHandle来实现,对图片文件的请求做专门的处理来实现图片防盗链功能
1,创建一个类,继承自IHttpHandler;
2,编译成DLL,csc /t:library CustomHandler.cs;
3,添加编译好的DLL引用到当前站点的bin文件夹下;
4,在Web.Config 中注册这个Handler.
代码1如下:
using System;
using System.Web;
namespace CustomHandler
{
publicclass JpgHandler : IHttpHandler
{
publicvoid ProcessRequest(HttpContext context)
{
// 获取文件服务器端物理路径
string FileName = context.Server.MapPath(context.Request.FilePath);
// 如果UrlReferrer为空,则显示一张默认的禁止盗链的图片
if (context.Request.UrlReferrer.Host == null)
{
context.Response.ContentType = "image/JPEG";
context.Response.WriteFile("/error.jpg");
}
else
{
// 如果 UrlReferrer中不包含自己站点主机域名,则显示一张默认的禁止盗链的图片
if (context.Request.UrlReferrer.Host.IndexOf("yourdomain.com") > 0){
context.Response.ContentType = "image/JPEG";
context.Response.WriteFile(FileName);
}
else
{
context.Response.ContentType = "image/JPEG";
context.Response.WriteFile("/error.jpg");
}
}
}
publicbool IsReusable
{
get{ returntrue; }
}
}
}
代码4如下:
<system.web>
<httpHandlers>
<add path="*.jpg,*.jpeg,*.gif,*.png,*.bmp" verb="*" type="CustomHandler.JpgHandler,CustomHandler" />
</httpHandlers>
</system.web>
|