Web Hosting Talk







View Full Version : .htaccess


smilb
08-16-2001, 05:18 AM
How can I block access of a dir from everywhere but the local machine? I want it to only accept a request from my site.

The Prohacker
08-16-2001, 12:25 PM
Maybe something like:
<Limit GET POST>
deny from all
allow from 127.0.0.1
</limit>


Fair warning, I haven't tired that, and am only guessing that would work...