Total Pageviews

Tuesday, 9 July 2013

在防盗链时, .htaccess文件最好放在网站的根目录

我的htaccess文件的内容:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !=""
RewriteCond %{HTTP_REFERER} !^https?://([^/]*)?brite\.biz/ [NC]
RewriteCond %{HTTP_REFERER} !^https?://([^/]*)?brite\.biz:8081/ [NC]
RewriteRule \.(jpg|jpeg|gif|png|mp3|swf)$ - [F,NC]

这样在我自己的网站http://as3.brite.biz:8081/myblog/,http://as3.brite.biz:8081/myblog/entry/id/ae6c825c3f465ee5013fa7ead0e70049.html里面的图片是可显示的,外链是不行的;http://as3.brite.biz:8081/myblog/entry/id/ae6c825c3f465ee5013fa07fc5380025.html里的歌曲是可播放的,外链的话,是播不了的。

我的mp3网盘:http://as3.brite.biz/mp3dish/

参考http://wiki.apache.org/httpd/DisableImageHotLinking