2012年 2月 12日
新年快乐! 新來賓
[ 登入 ]
主页 | 客户中心 | 技术支援中心
订阅 RSS | 设为首页 | 加入最爱
资料搜寻∶
浏览∶

如何防范「图片外连」及「频宽偷窃」

建立日期∶ 2009年 7月 18日   (2 年前) 阅读次数∶ 512 评价∶ 

概览

如何防范「图片外连」及「频宽偷窃」
点击这里放大“图片”
如何防范「图片外连」及「频宽偷窃」
If you find your site is running very slowly, there are measures you can take to bandwidth protect.

You can stop others from hotlinking your website files by placing a file called .htaccess in your Apache site root (main) directory. The period before the name means the file is hidden, so you may want to edit your file as htaccess.txt, upload it to your server, then rename the txt file to .htaccess in your directory.

Example: Your website URL is www.domainname.com. To stop hotlinking of your images from other sites and display a replacement image called nohotlink.jpe placed in your images directory, place this code in your .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(.+.)?domainname.com/ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpe [L]

The first line of the above code begins the rewrite. The second line matches any requests from your own domainname.com URL. The [NC] code means "No Case", meaning match the url regardless of being in upper or lower case letters. The third line means allow empty referrals. The last line matches any files ending with the extension jpeg, jpg, gif, bmp, or png. This is then replaced by the nohotlink.jpe file in your images directory. This JPEG image is using the extension jpe instead of jpg to prevent blocking your own replacement image.

To stop hotlinking from specific outside domains only, such as myspace.com, blogspot.com and livejournal.com, but allow any other web site to hotlink images:

RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://(.+.)?myspace.com/ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(.+.)?blogspot.com/ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(.+.)?livejournal.com/ [NC]
RewriteRule .*.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpe [L]

You can add as many different domains as needed. Each RewriteCond line should end with the [NC,OR] code. NC means to ignore upper and lower case. OR means "Or Next", as in, match this domain or the next line that follows. The last domain listed omits the OR code since you want to stop matching domains after the last RewriteCond line.

You can display a 403 Forbidden error code instead of an image. Replace the last line of the previous examples with this line:

RewriteRule .*.(jpe?g|gif|bmp|png)$ - [F]

As with any htaccess rewrites, you may block some legitimate traffic (such as users behind proxies or firewalls) using these techniques.
注意事项
  • Do not use .htaccess to redirect image hotlinks to another HTML page or server that isn't your own (such as this web page). Hotlinked images can only be replaced by other images, not with an HTML page.
  • 以上所指的domainname请替换成您的域名。
*** 以上提供的资料仅供参考,如有需要,请谘询独立技术顾问的意见。
这文章对您有帮助吗?
您可以加进最爱的书签∶DiggredditDeliciousGoogle BookmarksWindows LiveFacebookSlashdot BookmarksPropellerTechnoratiBlinkListYahoo bookmarksMa.gnoliaSquidoo
静态连结∶  
 
ec2Biz.com 互动多媒体、网页寄存、网上商店、电子商贸方案 | Ecommerce Web Hosting Solutions
©2012 Focus Network Company. 版权所有 不得转载