Home > Article > Web Front-end > Why is Access from Origin \'https://example.com\' Blocked Even Though I\'ve Allowed \'https://example.com/\'?
When attempting to access a resource cross-origin, developers often encounter issues related to the Access-Control-Allow-Origin header. The key to resolving these issues lies in understanding the precise meaning of "origin" in the context of the CORS protocol.
In CORS, an origin is a combination of a scheme, host (domain), and port. Importantly, it does not include a path. Therefore, the following two origins are considered distinct:
The problem in this particular case arises from a misunderstanding of the definition of origin. Specifically, the trailing slash in the allowed origin is not permitted according to CORS protocol specifications. As a result, the origin header sent by the browser (without the trailing slash) does not match the allowed origin configured on the server.
To resolve this issue, simply remove the trailing slash from the allowed origin value in your CORS configuration. In this case, the correct allowed origin would be:
With this modification, the browser's origin header will match the allowed origin, and CORS will be allowed successfully.
The above is the detailed content of Why is Access from Origin \'https://example.com\' Blocked Even Though I\'ve Allowed \'https://example.com/\'?. For more information, please follow other related articles on the PHP Chinese website!