咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
IIS7下多个子域名同时配置https协议,但IIS7默认支持单个443端口造成端口冲突;
解决方案:先把每个域名配置不同的端口 例:444,445,446等
然后在:C:\Windows\system32\inetsrv\config\applicationHost.config
找到
<binding protocol="https" bindingInformation="*:443" />
<binding protocol="https" bindingInformation="*:444" />
<binding protocol="https" bindingInformation="*:445" />
修改成:
<binding protocol="https" bindingInformation="*:443:www.landui.com" />
<binding protocol="https" bindingInformation="*:443:www.landui.com" />
<binding protocol="https" bindingInformation="*:443:www.landui.com" />
切记需要对应的每个站点都修改。
然后在iis的站点上重新选择下证书,重启iis站点。
这种方法不建议推荐,最好方法是升级成IIS8以上