Você precisa permitir que o Apache acesse a pasta raiz dos seus arquivos LAMP: Consulte o link
Edite o arquivo conf em /etc/apache2/sites-available/yourconffile.conf
Digite o seguinte:
<VirtualHost localhost:80>
DocumentRoot "/path/to/your/rootfolder"
<Directory "/path/to/your/rootfolder">
# AllowOverride All # Deprecated
# Order Allow,Deny # Deprecated
# Allow from all # Deprecated
# --New way of doing it
Require all granted
</Directory>
</VirtualHost>