首页 > 网站 > Apache > 正文

apache rewrite防盗链三例

2024-08-27 18:30:16
字体:
来源:转载
供稿:网友
1.利用rewrite 确认你的apache 能使用rewrite mod
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^*$ [NC]
RewriteCond %{HTTP_REFERER} !^$ [NC]
RewriteCond %{HTTP_REFERER} !^*$ [NC]
RewriteCond %{HTTP_REFERER} !^$ [NC]
RewriteRule .*/.(gif|jpb|png|css|js|swf])$  [R,NC]
其中有色的地方都是要改为你的:
 
红色:就是改为你提供下载页面的地址,也就是只有通过这个地址才可以下载你所提供的东东。
 
蓝色:就是要保护文件的扩展名(以|分开),也就是说以这些为扩展名的文件只有通过红色的地址才可以访问。
 
绿色:如果不是通过红色的地址访问蓝色这些为扩展名的文件时就回重定向到绿色地址上。
2.利用SetEnvIfNoCase 和 access
SetEnvIfNoCase Referer "^" local_ref=1
SetEnvIfNoCase Referer "^" local_ref=1

Order Allow,Deny
Allow from env=local_ref
红色为信任站点,蓝色为受保护的文件扩展名。 


3.<VirtualHost *:80>
ServerAdmin webmaster@etoow.com
DocumentRoot D:/www/www.etoow.com
ServerName 
ServerAlias etoow.com
ServerAlias 
ServerAlias chinahtml.net
ServerAlias 
ServerAlias chinahtml.cn
ErrorDocument 404 
SetEnvIfNoCase Referer "^" local_ref=1
SetEnvIfNoCase Referer "^" local_ref=1
<FilesMatch "/.(gif|jpb|png|css|js|swf)">
Order Allow,Deny
Allow from env=local_ref
</FilesMatch>
</VirtualHost>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表