Plusieurs sous-domaines sous IIS7 sont configurés avec le protocole https en même temps, mais IIS7 prend en charge un seul port 443 par défaut, provoquant des conflits de ports
Solution : configurez d'abord différents ports pour chaque nom de domaine ; 444, 445, 446, etc.
Ensuite recherchez
dans : C:Windowssystem32inetsrvconfigapplicationHost.config<binding protocol="https" bindingInformation="*:443" /> <binding protocol="https" bindingInformation="*:444" /> <binding protocol="https" bindingInformation="*:445" />
et modifiez-le en :
<binding protocol="https" bindingInformation="*:443:www.domain.com" /> <binding protocol="https" bindingInformation="*:443:www.domain.com" /> <binding protocol="https" bindingInformation="*:443:www.domain.com" />
Pensez à le modifier pour chaque site correspondant.
Resélectionnez ensuite le certificat sur le site iis et redémarrez le site iis.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!