Bonjour,

Je précise que je suis sous win10, avec un wamp 3.0.6 . Je vous écris car je rencontre un problème avec mes vhost.
J'ai en effet créé des vhost dans le fichier httpd-vhosts.conf de apache

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
<VirtualHost *:80>
DocumentRoot "C:/wamp64/www/toto/public"
ServerName toto.localhost
          CustomLog C:\wamp64\logs\b-access-error.log combined
          ErrorLog C:\wamp64\logs\b-error.log
     <Directory "C:/wamp64/www/toto/public">
          Options Indexes FollowSymLinks MultiViews
          Options -Indexes
          AllowOverride all
          allow from all
          #RedirectMatch ^/$ /index.php
     </Directory>
</VirtualHost>
 
 
<VirtualHost *:80>
DocumentRoot "C:/wamp64/www/8truc"
ServerName tart8truc.localhost
          CustomLog C:\wamp64\logs\b-access-error.log combined
          ErrorLog C:\wamp64\logs\b-error.log
     <Directory "C:/wamp64/www/8truc">
          Options Indexes FollowSymLinks MultiViews
          Options -Indexes
          AllowOverride all
          allow from all
          #RedirectMatch ^/$ /index.php
     </Directory>
</VirtualHost>
Le vhost toto.localhost est accessible sous chrome, IE, Firefox, alors que le vhost tart8truc.localhost est accessible uniquement sous Chrome. Mais pas sous IE, ni Firefox.

Je ne comprend pas bien pourquoi, il y a une différence comme cela.
J'ai essayé en vidant le cache des navigateur et de Windows. J'ai redémarré la machine a plusieurs reprise.

Avez vous une idée ?

Je vous remercie par avance.