The default access permissions to the website root are defined in the apache configuration file httpd.conf
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Directory>
was changed to
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
Directory>
Problem Solved