评论

收藏

[Apache] apache urlrewrite防盗链功能配置

web服务器 web服务器 发布于:2021-08-26 14:21 | 阅读数:318 | 评论:0

配置虚拟主机时,在配置文件中加入如下内容
DocumentRoot /home/img  
ServerName img.host.com  
ErrorDocument 404 /  
RewriteEngine on  
RewriteCond %{HTTP_REFERER} !^nbsp; 
RewriteCond %{HTTP_REFERER} !^http://img.host.com/.*$ [NC]  
RewriteCond %{HTTP_REFERER} !^http://www.host.com/.*$ [NC]  
RewriteRule \.(gif|jpg|jpeg)$ <img src="http://img.host.com/forbidden.png" border="0" alt=""> [R,L]

关注下面的标签,发现更多相似文章