如何允许所有 https 域的跨源请求
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要的基本逻辑是:
如果
Origin
请求标头的值以https:
开头,则包含
Access-Control-Allow-Origin
响应标头,其中包含从Origin
请求标头复制的值。否则……不要。
如何实现该伪代码的具体细节取决于您在服务器上使用的技术。
The basic logic that you need is:
IF the value of the
Origin
request header STARTS WITHhttps:
THEN include a
Access-Control-Allow-Origin
response header with the value copied from theOrigin
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.