在較新版本的 Chrome 中訪問一些未受信任的 HTTPS 頁面時,會提示類似 NET::ERR_CERT_INVALID 的錯誤。以往舊版本中,我們可以選擇跳過得以繼續(xù)訪問,但是新版本的 Chrome 中并不允許繼續(xù),且提示以下錯誤:
經(jīng)過很多種嘗試后,目前發(fā)現(xiàn)只有兩種比較有效的方法可以解決。 你可以在 Chrome 啟動時加上 --ignore-certificate-errors 和 --ignore-urlfetcher-cert-requests 參數(shù)來解決該問題。 - Windows 用戶
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --ignore-certificate-errors
- Mac 用戶
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --ignore-certificate-errors --ignore-urlfetcher-cert-requests &> /dev/null
然后重新打開 Chrome 并瀏覽您的網(wǎng)站,便可正常訪問。
當出現(xiàn) "您的連接不是私密" 頁面時,點擊高級后,并直接輸入 thisisunsafe 關鍵字并回車。當你使用的 Chrome 版本不允許通過點擊操作設置例外時,這樣操作將允許將此次請求設置到安全例外中。 注意:在 Chrome 該頁面上,直接鍵盤輸入后回車,并不是在地址欄輸入。
如果你真的看不明白上面的文字描述,還可以參考下面的操作演示: 參考文檔
- https://www.google.com
- http://www./03/hack-68770.htm
- https://blog.csdn.net/quanqxj/article/details/103076795
- https:///@dblazeski/chrome-bypass-net-err-cert-invalid-for-development-daefae43eb12
|