This is a discussion on Need help with Apache within the Windows Web Servers forums, part of the Web Server and Related Forums category; Hello: I need some help. I am putting one of my clients files on my hard drive. My question for ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello:
I need some help. I am putting one of my clients files on my hard drive. My question for you is how do I setup Apache to find the files in that new directory. The directory is going to be on drive D and the name of the Directory is Carib. Also is it possible to put files on your CD ROM drive and would Apache be able to find those files to display on the internet. Any help I can get would be gladly appreciated. Thanks Emanuel http://www.grenada.shorturl.com |
|
|||
|
On 04 Mar 2004, emanuel@escape.ca (Emanuel) wrote in
news:2f6eb8d2.0403041550.1c791cba@posting.google.c om: > I need some help. I am putting one of my clients files on my hard > drive. My question for you is how do I setup Apache to find the > files in that new directory. The directory is going to be on > drive D and the name of the Directory is Carib. Check out "Alias" and "Directory" directive in the documention. It will be something like: Alias /clientfiles "d:/Carib" <Directory "d:/Carib"> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory> > Also is it possible to put files on your CD ROM drive and would > Apache be able to find those files to display on the internet. Yes. Set it up similar to the above. |