Forum Moderators: phranque
<Files 403.shtml>
order allow,deny
allow from all
</Files>
deny from 70.86.231.168
deny from 195.66.135.132
deny from 209.97.221.150
will this protect my downloads?.
will it affect google bot crawling my site?
What you should do is instead create a small video acting as an ad for your site. Then when a visitor of the hotlinking site opens the video, they will instead see your ad. If someone opens the video on your site though it woill work like normal.
RewriteCond %{REQUEST_FILENAME} .*avi$¦.*mpg$¦.*mov$ [NC]
RewriteCond %{HTTP_REFERER} hotlinkingsite.com [NC]
RewriteRule (.*) /videos/advertisement.avi [L]
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} .*rm$¦.*mp3$ [NC]
RewriteCond %{HTTP_REFERER} #*$!xxxxx.com [NC]
RewriteCond %{HTTP_REFERER} xxxxxxxx.com [NC]
RewriteRule (.*) /downloads/sample.rm [L]
By doing so its not blocking .do i need to modify code.plz let me know.