当前位置:服务器 > > 正文

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

时间:2021-10-23 10:59:07类别:服务器

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]  
  • 上一篇下一篇

    猜您喜欢

    热门推荐