3mors
HampCake Studios
I'd like to let friends download files from my webserver.
The problem is that these files are outside root folder (DocumentRoot) of Apache, so I have to use aliases.
In this case I share files in firewire and on http://localhost/firewire/ i see the list of files.
But if I click on one of them (aaa.sit, for example), the download doesn't start and the browser go to http://localhost/firewire/aaa.sit/ and I see the same list of /firewire/.
How to tell apache to let download these files?
The problem is that these files are outside root folder (DocumentRoot) of Apache, so I have to use aliases.
Code:
AliasMatch /firewire/ "/Volumes/firewire/"
<Directory "/Volumes/firewire/">
Options FollowSymLinks Indexes
</Directory>
But if I click on one of them (aaa.sit, for example), the download doesn't start and the browser go to http://localhost/firewire/aaa.sit/ and I see the same list of /firewire/.
How to tell apache to let download these files?