我正在编写一个 .pac 文件以在没有越狱的情况下与 iOS5 一起使用,但我在匹配以“https”开头的 url 时感到麻烦(例如:https ://test.com ://test.com )。
这是我的脚本:
function FindProxyForURL(url, host) {
if (shExpMatch(url, "https://*")) return "PROXY 123.123.123.123";
return 'DIRECT';
}
如果我匹配“https://test.com”,如何将“https://123.123.123.123”返回到 URL?