创建 .pac 以重定向某些页面

发布于 2024-12-12 00:27:15 字数 648 浏览 0 评论 0原文

我已经这样做有一段时间了,我很困惑。我需要为我们的一台服务器创建自动配置脚本。它需要能够单独阻止/重新路由某些 url。

例如,我们的产品使用 Facebook,如果 facebook API 出现故障,我希望它能够轻松地重新路由到显示“错误..”的页面。或者,如果我需要阻止 Facebook 进行一些测试,那也是可能的。

我读过很多文章,甚至找到了有关 .pac 文件的教程 (设计和实施有效的 PAC 文件解决方案)。测试这个时我写了一个脚本。但是,当我将其导入 Internet Explorer 9 时,它没有执行任何操作。

任何帮助都会有所帮助,我们将不胜感激。

示例代码。如果使用 Facebook 网址,我只是希望它重定向到 Google。

function FindProxyForURL(url, host) { 
    if(url.substring(0, 15) == "www.facebook.com") return "www.google.com: 8080";
else return "DIRECT"; }

I've been at this for a while and i'm stumped. I need to create and Automatic Configuration script for one of our servers. It needs to be able to individually block/reroute certain url's.

For example, our product uses Facebook and if the facebook API goes down I want it to easily be able to reroute to a page that says "Error ..". Or if I need to block just facebook to do some testing it would be possible.

I've read many articles and even found a tutorial on .pac files (Designing and implementing effective PAC file solutions). When testing this I've written a script. However, when I import it in Internet Explorer 9 it doesn't do anything.

Any help would be of assistance and greatly appreciated.

Example code. I just want it to redirect to Google if the facebook url is used.

function FindProxyForURL(url, host) { 
    if(url.substring(0, 15) == "www.facebook.com") return "www.google.com: 8080";
else return "DIRECT"; }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好听的两个字的网名 2024-12-19 00:27:15

pac 文件仅支持返回值中的 3 个指令:PROXY urlSOCKS urlDIRECT

要执行您想要的操作,您将需要代理到您拥有的代理服务器,该服务器进行访问检查。

pac files only support 3 directives in the return value: PROXY url, SOCKS url and DIRECT.

To do what you want, you will want to PROXY to a proxy server that you own, that does the access check.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文