apache urlrewrite防盗链功能配置

时间:2022-02-24 12:15:45

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

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