apache 通过urlrewrite防盗链功能配置

配置虚拟主机时,在配置文件中加入如下内容 

      DocumentRoot /home/img
      ServerName img.host.com
      ErrorDocument 404 /
      RewriteEngine on
      RewriteCond %{HTTP_REFERER} !^$
      RewriteCond %{HTTP_REFERER} !^http://img.host.com/.*$ [NC]
      RewriteCond %{HTTP_REFERER} !^http://www.host.com/.*$ [NC]
      RewriteRule \.(gif|jpg|jpeg)$ http://img.host.com/forbidden.png [R,L]

posted on 2009-05-26 15:54  eoiioe  阅读(422)  评论(0)    收藏  举报

导航