[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Linking Multiple Directories
- Subject: Re: [cobalt-users] Linking Multiple Directories
- From: flash22@xxxxxxx
- Date: Mon Dec 24 21:14:01 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
On Mon, 24 Dec 2001, John D. Gorena wrote:
> I assume that I can be in
> /home/sites/site12/web/ and create a symbolic link from here to point to
> /home/sites/site10/web/manuals/ . I tried several variations of the following
> command:
> ln -s /home/sites/site10/web/manuals/ manuals/ but that does not seem to work.
> What am I typing in wrong?
Don't put the trailing slash on the directory name, it's not part of the
name...
I suppose i should point out that this probably won't work the way you are
hoping in any event, different sites are owned by different users, you are
asking the web server to read someone elses files....
If you are making them available to all users , you might be better off
using Alias in the server config, which will make the web server 'prtend'
that directory exists but will in fact read the contents from elsewhere
eg:
Alias /neomail /home/neomail/html
is how neomail pretends to be on all the web sites when in fact it only
exists in one place...
[You need to put this in the server config ...]
gsh