停止Client中的HTTP请求

发布于 2024-11-10 05:12:00 字数 88 浏览 3 评论 0原文

我有一个从浏览器地址栏发出的 HTTP 请求的场景,我需要重定向到客户端的不同 URL。

有什么方法可以中止 HTTP 请求并重定向到新 URL。

I have the scenario to the HTTP request which is hitted from the browser address bar and i need to redirect to different URL on the client side.

Is there any way to Abort the HTTP request and redirects to the new URL.

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

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

发布评论

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

评论(2

遥远的绿洲 2024-11-17 05:12:01

仅使用 javascript 无法做到这一点。

您需要在服务器端捕获请求,并发出 3XX 请求,将 Location http 标头设置为您要将用户重定向到的 URL

You cannot do this using just javascript.

You need to capture the request on the server side and make a 3XX request setting the Location http header to the URL you want to redirect your users to

树深时见影 2024-11-17 05:12:00

不,如果你能做到的话,那将是一个很大的漏洞。原因是 http 请求将表示请求标头被发送回您的浏览器,表明您已经在前往其他站点的路上。如果这可以通过 JavaScript 完成,那么它肯定是一种黑客攻击,因为它允许您重定向诸如 fakebank.com 之类的网站,而不是 mybank.com

No, if you were able to do it, it would be a large vulnerability. The reason being is that the http request would signify request headers being sent back to your browser, indicating that you're already on your way to the other site. If this could be done via javascript, it would definitely be a hack, as it would allow you to redirect a site such as fakebank.com instead of mybank.com.

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