Forum Moderators: phranque
Put an index.html or index.php file in that directory
-or-
Add a DirectroyIndex directive to httpd.conf or .htaccess, specifying the default 'index page' name
-or-
Add the line:
Options -Indexes
to httpd.conf or .htaccess
-or-
Redirect missing-file requests to the home page or a site map.
However, you should only be getting the 'annoying list' for requests with no filename specified. If you specify a filename that does not exist, you should be getting a 404-Not Found response.
I can't give a better answer based on sparse input, but if you look up all of the above directives in the Apache documentation [httpd.apache.org], you should be able to get an idea of what Apache can do and which of those behaviours is what you want.
[added] I suppose this might also be a MultiViews problem, depending on how this 'list of files' corresponds to the requested URL. If you don'r need MultiViews/Content Negotiation, turn it off. [/added]
Jim