為防止你的網站圖片被其他網站盜連 (會使用你帳戶每月流量), 你可以考慮透過 .htaccess 檔案啟動 <防止圖片盜連>

你可以在 .htaccess 裡加入

Rewriteengine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://your_domain.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.your_domain.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.trusted.com/.*$ [NC]
RewriteRule .*\.(gif|GIF|jpg|JPG)$ – [F]

當然, 你需要更改 your_domain 為你自已的網址

Ref: http://www.webmasterstop.com/tutorials/prevent-hotlinking.shtml


你亦可以只為特定網站啟動防止圖片盜連

例如:

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]

Ref.: http://altlab.com/htaccess_tutorial.html

Pin It on Pinterest

Share This