创建 .pac 以重定向某些页面
我已经这样做有一段时间了,我很困惑。我需要为我们的一台服务器创建自动配置脚本。它需要能够单独阻止/重新路由某些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pac 文件仅支持返回值中的 3 个指令:
PROXY url
、SOCKS url
和DIRECT
。要执行您想要的操作,您将需要代理到您拥有的代理服务器,该服务器进行访问检查。
pac files only support 3 directives in the return value:
PROXY url
,SOCKS url
andDIRECT
.To do what you want, you will want to PROXY to a proxy server that you own, that does the access check.