php - Symfony project shows directory listing index instead of index page
one text
Solution:
Shouldn't the DocumentRoot
also be pointing to the Symfony ?
<VirtualHost *:90>
ServerAdmin [email protected]
DocumentRoot "${SRVROOT}/htdocs/symfony/public"
ServerName localhost
<Directory "${SRVROOT}/htdocs/symfony/public">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
Source