I have an account set up with www.domain1.com and have an add-on domain in that account of www.domain2.com and its files are stored in /home/domain1/public_html/domain2.com/

I'd like to be able to have a symbolic link between the images folder domain1.com so that it can be accessed on domain2.com (eg to make www.domain1.com/images/ show the same files as www.domain2.com/images/)

How can I do this? At the command line as root I've run ln -s /home/domain1/public_html/images/ /home/domain1/public_html/domain2.com/images/ and I see the link images when I log in via FTP, but I get an error 403 when trying to visit on the web.

What am I doing wrong?