A request for the website resource like images or fonts from outside of the origin website is known as a cross-origin request. It is a security mechanism that allows restricted resources like fonts, JavaScript code etc. on a website page to be requested from a 3rd party domain outside the domain from which these resources were served. Using CORS, you can control the website resources on who can access it.
CORS on a website hosted on Linux Environment
You can add the below line in your .htaccess file where cross-domain scripting is required.
<ifModule mod_headers.c>
Header set Access-Control-Allow-Origin: *
</ifModule>
CORS on a website hosted on Windows Environment
For Windows hosting accounts, create or modify the web.config file in the directory where you want to permit CORS requests. Add the following lines to the web.config file:
To enable CORS on the windows website, you can just add the below lines.
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>