Erreur 403 alors que j'ai un index.php [debutant]
Bonjour,
J'ai changé de serveur pour la dernière version de wampserver pour pouvoir tester zend framework.
Mon serveur ne prend plus par défaut les page index.html ou php
Il me fait une erreur 403 quand je fais http://www.zend.loc/ :
"Forbidden
You don't have permission to access / on this server."
si je fais http://www.zend.loc/index.php c'est ok
#httpd.conf
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13
| <VirtualHost 127.0.0.1>
ServerAdmin <a href="mailto:webmaster@zend.loc">webmaster@zend.loc</a>
DocumentRoot G:/test/zenframeworkphp
ServerName <a href="http://www.zend.loc" target="_blank">www.zend.loc</a>
ErrorLog G:/test/logs/zenframeworkphp.loc-error_log
CustomLog G:/test/logs/zenframeworkphp.loc-access_log combined
<Directory "G:/test/zenframeworkphp">
AllowOverride All
Options None
Order allow,deny
Allow from all
</Directory>
</VirtualHost> |