首页 > 编程 > ASP > 正文

如何阻止别人非法链接你网站的图片?

2024-05-04 11:10:15
字体:
来源:转载
供稿:网友
如何阻止别人非法链接你网站的图片?


  1. <% Option Explicit 
  2.  
  3. Dim strBuffer, FilePath 
  4. strBuffer = Request.ServerVariables("HTTP_REFERER"
  5. strBuffer = mid(strBuffer, InStr(strBuffer,".") + 1) 
  6. strBuffer = left(strBuffer, InStr(strBuffer, "/") - 1) 
  7.  
  8. FilePath = "/HIDDENIMAGES/" 
  9.  
  10. If strBuffer = "intels.net" then 
  11. FilePath = FilePath + Request.QueryString("FName"
  12. Else 
  13. FilePath = "/images/chunfeng.jpg" 
  14. End If 
  15.  
  16. Response.Redirect(FilePath) 



注:相关教程知识阅读请移步到ASP教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表