我在页面中嵌入了第三方 javascript脚本。它用于跟踪页面上视频的事件。但是我收到了一个错误:
XMLHttpRequest cannot load http://third-party_url.com/file.mp4.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://fast.wistia.net' is therefore not allowed access.
我知道有这个错误的解决方案,但如果它是我自己的脚本,它们可能会适用。如何修复错误?
更新:
我将此添加到我的
<VirtualHost *:80>
Access-Control-Allow-Origin: "http://fast.wistia.net"`
到/etc/apache2/sites-enabled/my_domain.com
,但没有帮助。
答案 0 :(得分:0)
包括
<script type="text/javascript" src="http://www.ajax-cross-origin.com/js/jquery.ajax-cross-origin.min.js />
解决了我的问题检查出来。