Enabling Cross-Origin Resource Sharing (CORS)
Learn how to enable Cross-Origin Resource Sharing (CORS) for your hosting account.
This article describes how to enable Cross-Origin Resource Sharing (CORS) for your site. CORS enables web browsers to access resources at a different location from where the web application is running. For example, if you have an application running on https://example.com that requests resources from https://example-2.com, the server on example-2.com must allow such requests.
Important
If you are using secure ( https:// ) connections with cross-origin resource sharing, make sure the servers have valid and trusted SSL certificates. Even if CORS is enabled correctly on the server, some browsers (such as Firefox) do not complete cross-origin requests if the SSL certificate itself is invalid.
Enabling CORS
To enable CORS, you must configure the web server to send an HTTP header that permits remote access to its resources.
To do this, create or modify the .htaccess file in the directory where you want to permit CORS requests. Add the following line to the .htaccess file:
Header set Access-Control-Allow-Origin "*"
More Information
For more information about CORS, please visit https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS.
Related Articles
Updated 3 days ago