J'utilise un serveur web (PHP) qui fonctionne bien jusqu'à la version 13.10. Maintenant, j'ai mis à jour vers 14.04 TLS
Le serveur Apache2 (mon impression) n'est pas dans le bon répertoire \var\www
C'est ce que je vois :
Index of /
[ICO] Name Last modified Size Description
Apache/2.4.7 (Ubuntu) Server at luke2 Port 80
Lorsque j'utilise un http://luke2.avmbenelux.local/info.php Je vois :
Not Found
The requested URL /info.php was not found on this server.
Apache/2.4.7 (Ubuntu) Server at luke2 Port 80
Quand je regarde dans /var/www, je vois que info.php est disponible.
apache2.conf :
# Sets the default security model of the Apache2 HTTPD server. It does
# not allow access to the root filesystem outside of /usr/share and /var/www.
# The former is used by web applications packaged in Debian,
# the latter may be used for local directories served by the web server. If
# your system is serving content from a sub-directory in /srv you must allow
# access here, or in any related virtual host.
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
Une idée ?