In your httpd.conf file you need to find the line that looks like:
<Directory "/usr/local/apache/htdocs">
It should be different for your system. Under that line will be another that looks like this:
Options Indexes FollowSymLinks MultiViews
Remove the Indexes option and your users won't be able to see the files in your directories.
Also in the directory listed in the <Directory> line above create a file called index.html with this code in it:
<H2 align="center">Go Away</H2>
Now whenever anyone types in your url they will get a page that says "Go Away". Feel free to change that to whatever you want.