I would like to be able to go to 127.0.0.1/multimedia/any_file.ext and see it like any other folder in htdocs. Here's what I'm trying in the configuration:

Alias "multimedia" "F://public_vids/"
<Directory "F://public_vids/">
  Options +Indexes
    Order allow,deny
    Allow from all
</Directory>

I've read the docs on the Apache website but not able to get it to work.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You'll want to specify a path relative to the web root; that is:

Alias /multimedia F://public_vids

I've heard quotes can mess up some of the Apache config settings, so I would try removing them from the Alias directive, just in case. If all else fails, try posting the relevant lines from your Apache access and error logs.

link|improve this answer
Okay thanks I'll try this, thanks for your help guys – Jeremy Dicaire Apr 5 '11 at 14:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.