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

What is a virtual Domain?

A virtual domain is the base URL of the domain name. Examples include yourdomain.com, and...

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...

How do I customize error messages for my site?

Within control panel select Custom Error Pages. Select the error code link and place whatever...

htaccess referral redirect

It is often useful to redirect a visitor to a page based on the referring website. There are...