Re: FN-FORUM: Restricting directory access to specific servers only.
date posted 27th January 2005 15:06
john m wrote:
>
> So I can get the .htaccess to restrict user access to a web directory.
>
> But how would I go about restricting access to the same directory to
> specific servers only?
>
> Any ideas at this late stage of the day?
>
> john
>
>
If my memory serves me right, you want something like this:
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
HTH