• After editing my .htaccess file to protect against hotlinking:

    #BEGIN Hotlink Protection
    RewriteEngine on
    RewriteCond %{HTTP_REFERER} !^http://(.+\.)?loneplacebo\.com/ [NC]
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !google\. [NC]
    RewriteCond %{HTTP_REFERER} !search\?q=cache [NC]
    RewriteCond %{HTTP_REFERER} !msn\. [NC]
    RewriteCond %{HTTP_REFERER} !yahoo\. [NC]
    RewriteRule .*\.(jpe?g|gif|bmp|png|jpg)$ /images/nohotlink.jpe [L]
    #END Hotlink Protection

    Things worked according to plan. However, when I took a look at my blog’s RSS feed: http://feeds.feedburner.com/LonePlacebo Some of the images were being replaced by the hotlink image.

    Is there any way to allow the RSS feed to show the normal images?

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Hotlinking Protection Messes Up Site’s RSS Feed’ is closed to new replies.