Hi,
Yeah, there are many ways how you can accomplish this. In any case, find some other hosting provider, Yahoo is not very flexible if you want to do some special stuff. I go with Forpsi and Station, they are not bad.
In regards to preventing the access
A)
If you have access to your httpd.conf (server configuration) file, add the following to the <Directory> section. The IndexIgnore directive adds to the list of files to hide when listing a directory.
IndexIgnore *This setting is global. If you want to disable listing for just some folders, then:
B)
If you can edit your .htaccess file (the one in the folder you want prevent from dir listing), insert the following:
Options -IndexesThis stops showing directory listings for URLs which map to the directory.
C)
You could also disable dir indexing completely. Find the following line in your httpd.conf and place a # in front of it.
LoadModule autoindex_module modules/mod_autoindex.soThis will disable directory listing completely for everyone and everywhere.
D)
The Allow,Deny relates to restricting access . Again, this can be either in your httpd.conf or in your .htaccess.
Here is a good page on IndexIgnore:
http://www.maxi-pedia.com/IndexIgnoreSee here if interested learning about Order Allow,Deny:
http://www.maxi-pedia.com/Order+allow+denyCheers. Let us know how it goes. What is your website? Just currious.