Hi,
I'd like to put a symbolic link accessible from the web that points somewhere else on the hd.
For example, in this directory, publicly avaible:
/home/e-smith/files/ibays/<ibai name>/html/<folder>/
I'd like to put a symbolic link subfolder so:
/home/e-smith/files/ibays/<ibai name>/html/<folder>/<subfolder> points to /home/e-smith/files/users/<user>/<subfolder>/
I've created the symbolic link like this:
ln -s /home/e-smith/files/users/<user>/<subfolder>/ /home/e-smith/files/ibays/<ibai name>/html/<folder>/<subfolder>
But when accessing the site, I can see the <subfolder> but when clicking on it apache tells me:
Forbidden
You don't have permission to access /<name>/<symbolic name> on this server.
Is it possible to do this?
Thank you.