Connection
網站不適用於 Edge 和 E11:“與網站的連接已重置”
我們的網站適用於所有非 Microsoft 瀏覽器,例如 FireFox、Safari、Chrome、Android Browser 5.0/6.0 等
錯誤消息如下:
The connection to the website was reset. Error Code: INET_E_DOWNLOAD_FAILURE
在螢幕截圖上:
更新:
我們尚未在低於 Windows 10 週年和創意者更新的 Windows 版本上測試此錯誤。
我終於設法解決了這個討厭的問題!基本上
X-Content-Security-Policy
,我的 NGINX 配置中的標題是多行的。所以我只是扁平化了這個片段:
add_header X-Content-Security-Policy "default-src 'self'; \ script-src 'self' https://ssl.google-analytics.com; \ img-src 'self' https://ssl.google-analytics.com";
進入這個醜陋的單線:
add_header X-Content-Security-Policy "default-src 'self'; script-src 'self' https://ssl.google-analytics.com; img-src 'self' https://ssl.google-analytics.com";
現在 IE 和 Edge 工作了,耶!