I have read the Zeus documentation which looks like a subset of Apache, with no Rewrite engine. So I am trying to prevent hotlinking using <Files> and having some curious results.
Code: Select all
<Files *>
order deny,allow
deny from all
allow from "my-site"
</Files>The second problem is what to put in the <Files> directive. If I just put "deny from all" inside and wish to restrict every file I only get an error from <Files *> but if it uses regular expressions, shouldn't this be <Files .*>?
I guess what I am looking for will not look a million miles different from:
Code: Select all
<Files *.jpg>
order deny,allow
deny from all
allow from ^.*www\.f1nutter\.com.*$
</Files>Cheers.