进入该网站会让您下载一个包含此代码的文件。
function FindProxyForURL(url, host) {
//Ver:1.0.0.4
if (shExpMatch(url, "*/recaptcha/*")) return "DIRECT";
if (shExpMatch(host, "cse.google.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.google.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "*search.yahoo.com")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.bing.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.ebay.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.youtube.*")) return "PROXY 127.0.0.1:83";
if (shExpMatch(host, "www.amazon.*")) return "PROXY 127.0.0.1:83";
return "DIRECT";}
我有一个短期解决方案,即运行一个 .reg 文件,该文件运行
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_USERS\S-1-5-18\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_USERS\...\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"=-
"ProxyServer"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxySettingsPerUser"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Internet Explorer\Control Panel]
"Connection Settings"=dword:00000000
这是我发现的唯一解决方案,除了重置我的电脑或运行完整扫描(有时可能有效)。有人知道这个代理有什么用吗?
答案1
您好,我刚刚解决了我网络上的同样问题:您必须更改路由器密码。
我希望这个解决方案也适合您。