Kevin law wrote:
I have 3 hard drives hooked up. they are labeled c,e, and d.

i have an index.html page setup in my documentroot folder. So i can manage
links to folders and files in an organized way.

i have tried making a link to e:\files\
but it just tells me that its forbidden

is it possible to access folders/files on another harddrive?

Yes, but because they are not "under" your current DocumentRoot, you will have to give them permissions, by using a <Directory> section, as follows :

<Directory e:/files>
  Allow from all
</Directory>

Warning: with the above, do not put anything under e:/files that you do NOT want users to see.


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
  "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to