Https

是否可以在 IE 11 中禁用 HTTP 嚴格傳輸安全性?

  • April 20, 2016

是否可以在 IE 11 中禁用 HTTP 嚴格傳輸安全性?

為什麼要這樣做的範例:特定使用者組已通過代理過濾網際網路訪問,其中僅允許列入白名單的域和 URL。您希望允許訪問http://www.xyzzy.com/hi/there但由於該網站使用 HTTP 嚴格傳輸安全性,使用者被重定向到https://www.xyzzy.com/hi/there>。在這種情況下,您將被迫允許訪問所有<https://www.xyzzy.com

是的。當我輸入您的主題標題時,此頁面在 Google 中很顯眼,告訴您如何操作。

然而,這聽起來不是一個好主意。您最好獲得更好的阻止軟體,讓您可以按協議和域名進行阻止。

這是在程式碼塊中,抱歉,正確格式化它需要很長時間。查看連結頁面的格式。

對於基於 x86 的系統

Click Start, click Run, type regedit, and then click OK.
Locate the following registry subkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\
On the Edit menu, point to New, and then click Key.
Type FEATURE_DISABLE_HSTS, and then press Enter.
Click FEATURE_DISABLE_HSTS.
On the Edit menu, point to New, and then click DWORD value.
Type iexplore.exe.
On the Edit menu, click Modify
In the Value data box, type 1, and then click OK.

對於基於 x86 的系統

Click Start, click Run, type regedit, and then click OK.
Locate the following registry subkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\
On the Edit menu, point to New, and then click Key.
Type FEATURE_DISABLE_HSTS, and then press Enter.
Click FEATURE_DISABLE_HSTS.
On the Edit menu, point to New, and then click DWORD value.
Type iexplore.exe.
On the Edit menu, click Modify
In the Value data box, type 1, and then click OK.

Note The valid values for the iexplore.exe subkey are 0 and 1. A value of 1 disables the feature, and 0 enables the feature.
Exit Registry Editor.

For x64-based systems
Click Start, click Run, type regedit, and then click OK.
Locate the following registry subkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\
On the Edit menu, point to New, and then click Key.
Type FEATURE_DISABLE_HSTS, and then press Enter.
Click FEATURE_DISABLE_HSTS.
On the Edit menu, point to New, and then click DWORD value.
Type iexplore.exe.
On the Edit menu, click Modify
In the Value data box, type 1, and then click OK.

Note The valid values for the iexplore.exe subkey are 0 and 1. A value of 1 disables the feature, and 0 enables the feature.
Locate the following registry subkey: 

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\
On the Edit menu, point to New, and then click Key.
Type FEATURE_DISABLE_HSTS, and then press Enter.
Click FEATURE_DISABLE_HSTS.
On the Edit menu, point to New, and then click DWORD value.
Type iexplore.exe.
On the Edit menu, click Modify.
In the Value data box, type 1, and then click OK.

Note The valid values for the iexplore.exe subkey are 0 and 1. A value of 1 disables the feature, and 0 enables the feature.
Exit Registry Editor.

引用自:https://serverfault.com/questions/771566