我有两个站点: https//:www.domain-only-uses-https.com 和 www.domain-uses-both-http-and-https.com
现在我在前者的页面中向后者发出 2 个 ajax GET 请求,一个是
https://www.domain-uses-both-http-and-https.com/some-path (using the HTTPS scheme)
另一个是
http://www.domain-uses-both-http-and-https.com/some-other-path (using the HTTP scheme)
我确实将“https//:www.domain-only-uses-https.com”设置为服务器“www.domain-uses-both-http”中“Access-Control-Allow-Origin:”标头的值-和-https.com“。
但是现在似乎Chrome只允许请求1,但禁止请求2。
所以我的问题是:“Access-Control-Allow-Origin”标头是否区分 HTTP 和 HTTPS?希望我已经说清楚了..