I have apache2 running on Ubuntu 14.04.2 LTS. The problem is, I keeps getting the following error (tail -f /var/log/apache2/error.log
)
[Wed Jun 10 18:18:56.114203 2015] [core:error] [pid 14802] [client 10.0.0.100:48843] AH00037: Symbolic link not allowed or link target not accessible: /var/www/html/xxxx
In file: /etc/apache2/sites-enabled/000-default.conf I have
DocumentRoot /var/www/html
<Directory />
Options +FollowSymLinks
AllowOverride None
</Directory>
In /var/www/html directory, I have a softlink called "xxxx" pointing to /root/xxxx
I restarted the apache by
service apache2 restart
But it didn't help.
Any ideas?