How can I allow (using mod_access) my scripts to call each other but deny access for everybody else?
I have a script in folder "A" and it needs to be called by a script in folder "B". Only script in folder "B" should be able to call script in folder "A". Everybody else should be denied.
I can put something like this in folder "A":
<Limit GET POST>
order deny,allow
deny from all
allow from "What to put here?????"
</Limit>
Shit, I hope somebody understands what I am trying to say
