Linux

关注公众号 jb51net

关闭
首页 > 网站技巧 > 服务器 > Linux > apache urlrewrite防盗链

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]
您可能感兴趣的文章:
阅读全文