Web 代理处理 window.location 重定向
我正在开发一个网络代理,当网站使用 javascript 重定向时,我遇到了问题,
window.location = "http://newurl.com";
是否有某种方法可以拦截此内容并将 url 重写为这种格式“proxt?url=http://newurl.com"
在 Firefox 中很容易,
function locationWatcher(id, oldURL, newURL) {
return parseURL(newURL);
}
window.watch('location', locationWatcher);
但问题是我需要它在 IE 下工作。
提前致谢!
I'm working on a web proxy and I have problem when a sites is using javascript redirect by doing a
window.location = "http://newurl.com";
Is there some way to intercept this and rewrite the url to this format "proxt?url=http://newurl.com"
In Firefox its easy,
function locationWatcher(id, oldURL, newURL) {
return parseURL(newURL);
}
window.watch('location', locationWatcher);
But the problem is that I need it to be working under IE.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代理可以重写 HTML,但这很难正确完成。
编写一个为 IE 执行此操作的插件也很难正确完成。
如何处理使用 META 刷新的重定向?
Your proxy can rewrite the HTML, but that is very very hard to do correctly.
Writing an addon that does this for IE is also very very difficult to do correctly.
How do you handle redirects that use META refresh?