Cross Origin Request Error

When receiving a cross-origin / cross original request, CORS header 'Access-Control-Allow-Origin' does not match, or same origin disallow policy error you may need to add an http header to allow the request. The following two examples work in cases regarding Apache and may be used by adding one set to the .htaccess file:

 

<FilesMatch ".(js|css|xml|gz|html|eot|ttd|otf|woff)$">
Header add Access-Control-Allow-Origin "*"
</FilesMatch>

 

<IfModule mod_headers.c>
Header add Access-Control-Allow-Origin "*"
</IfModule>
  • 129 Users Found This Useful

Was this answer helpful?

Related Articles

Do you support TeamSpeak?

We do not support Teamspeak on our servers but allow you to create a subdomain such as...

Common Search Engine Optimization Tips

Get other websites to link to you. Have your website linked and posted in socal media...

What are these vt directories?

Those are FrontPage extension directories. If you have and no longer need them you can uninstall...

Point my domain to my wix account

How can I point my domain name to my wix.com account?To set this up you will want to login to...

403 Error on POST

This can occur for several reasons: Be sure your file permissions are correct. If the file needs...