ステップ 1: 次のコードを使用して CustomHandler.cs ファイルを作成します:
using System;
using System.Web;
namespace CustomHandler{
public class JpgHandler : IHttpHandler{
public void 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");
}
}
}
public bool IsReusable{
get{ return true; }
}
}
}
ステップ 2 このファイルをコンパイルします
csc /t:library /r:System.Web.dll CustomHandler.cs
Step.3コンパイルした CustomHandler.dll をサイト ディレクトリの Bin にコピーします。
Step.4 このハンドラーを Web.Config に登録します。
/system. web>
手順に従って自分でテストできますので、ここでは詳しく説明しません。