C#防盗链处理类的代码

Posted tozgb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#防盗链处理类的代码相关的知识,希望对你有一定的参考价值。

如下的内容是关于C#防盗链处理类的内容。


public class FileHandler:IHttpHandler
{
public FileHandler()
{
}

public void ProcessRequest(HttpContext context)
{
if ((context.Request.UrlReferrer == null) || (context.Request.UrlReferrer.Host == "localhost" && context.Request.UrlReferrer.Port == 16490))
{
context.Response.Expires = 0;
context.Response.Clear();
context.Response.ContentType = "rar";
context.Response.WriteFile(context.Request.PhysicalPath);
context.Response.End();
}
{

HttpResponse response = context.Response;
response.Redirect(context.Request.ApplicationPath + "/ErrorPage.htm");
}

}
public bool IsReusable
{
get
{
return false;
}
}
}




 

以上是关于C#防盗链处理类的代码的主要内容,如果未能解决你的问题,请参考以下文章

HTTP协议之防盗链与反防盗链

HTTP防盗链与反防盗链

nginx 防盗链

一行代码实现防盗链!

Nginx防盗链和FPM模块优化

Nginx 防盗链配置