How to restrict GET requests from other sites?

-1

I'm trying to prevent other sites from copying my download links, but they're not conventional (they are not formatted at the end), so I can not block through Apache's mod_rewrite.

So I decided to block GET requests from other sites, but the forms I tested are blocking all requests, including the site I'm trying to allow.

What I tried without success was:

<Limit GET> 

order allow,deny
Allow from exemplo.com
Deny from all

</Limit>
    
asked by anonymous 19.01.2018 / 04:08

1 answer

-1

I can be right or wrong, but I think downloading files depends on what it is, for example, CSS, JS, everything can be downloaded and if the guy finds some .exe, .rar, .png, something she can open a link, it will be downloaded the same way, so I find it somewhat unnecessary for you to try to block something, that the net itself makes downloading, mainly giving view-source: on your site.

    
19.01.2018 / 04:20