您的位置:首页 > 服务器 > > 正文

apache漏洞怎么排查(apache urlrewrite防盗链功能配置)

更多 时间:2021-10-23 10:59:07 类别:服务器 浏览量:1125

apache漏洞怎么排查

apache urlrewrite防盗链功能配置

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

    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]  
  • 您可能感兴趣