熱連結預防

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC]
RewriteRule \.(gif|jpg|css)$ - [F]

這將阻止所有連結到’.gif’,’.jpg’和’.css’檔案,這些檔案不是來自域名 http://www.yourdomain.com

顯示替代內容:

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC]
RewriteRule \.(gif|jpg)$ http://www.yourdomain.com/angryman.jpg [R,L]

這將阻止所有連結到’.gif’和’.jpg’檔案,這些檔案不是來自域名’ http://www.yourdomain.com/ ‘,並顯示檔案’ http://www.yourdomain.com/angryman .jpg ‘而不是。