-1
I’m trying to stop other sites from copying my download links, but they’re unconventional (they don’t have format at the end), so I can’t block through Apache mod_rewrite.
So I decided to block GET requests from other sites, but the ways I’ve tested are blocking all requests, including from the site I’m trying to allow.
What I tried unsuccessfully was:
<Limit GET>
order allow,deny
Allow from exemplo.com
Deny from all
</Limit>
Already answered in block image link to other websites - But beware: it may be desirable to accept referrer blank as well.
– Bacco
The following https://serverfault.com/questions/270950/only-allow-get-request-with-htaccess - The DENY ALLOW filters you change
– Diego