如何允许所有 https 域的跨源请求

发布于 2025-01-10 15:22:34 字数 65 浏览 0 评论 0原文

我使用 SSL 为我的网站提供服务,并且我也希望仅接受来自使用 SSL 的网站的跨域请求。

是否可以?

I serve my site with SSL and I want to accept cross-origin requests only from sites with SSL as well.

Is it possible?

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

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

发布评论

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

评论(1

请持续率性 2025-01-17 15:22:34

您需要的基本逻辑是:

如果 Origin 请求标头的值以 https: 开头

,则包含 Access-Control-Allow-Origin 响应标头,其中包含从 Origin 请求标头复制的值。

否则……不要。


如何实现该伪代码的具体细节取决于您在服务器上使用的技术。

The basic logic that you need is:

IF the value of the Origin request header STARTS WITH https:

THEN include a Access-Control-Allow-Origin response header with the value copied from the Origin request header.

ELSE … don't.


The specifics of how you implement that pseudo-code will depend on what technology you are using on your server.

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