[EMAIL PROTECTED] wrote: > if I want to protect a special directory in which I put reserved files, > I think that I have to act in the configuration file of Apache called > httpd.conf
Try this: <Directory /path/to/your/dir> order deny,allow deny from all allow from 127.0.0.1 </Directory> /path/to/your/dir is a physical path to your directory, where you have your secret files. That way only localhost is allowed to view those files. Is that what you need? - RaFaL Pocztarski, [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
