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 perl modules are installed on the server?

You can get a complete list of the modules that are installed by going to the control panel and...

“Not Secure” Web Error

In this day and age browsers now default to using https:// instead of http://. We make SSL...

Creating a Form Button

Sometimes all you need is a simple button. The following pages are pretty useful tools for...

Common Search Engine Optimization Tips

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

Why do I get emails for cron jobs?

This is the default. If you would like to disable receiving emails when a cron job runs append...