我无法在未启用CORS的情况下访问某些文件。 我将这些文件放在谷歌上,我已经通过以下方式启用了CORS:
handlers:
- url: /(.*\.(htm$|html$|css$|js$|ini$|swf$|vtt$|md$))
static_files: \1
upload: (.*\.(htm$|html$|css$|js$|ini$|swf$|vtt$|md$))
application_readable: true
http_headers:
Access-Control-Allow-Origin: https://link-to-storage/directory_storage
我尝试从php启用CORS,但仍无效。
如果我在启用了CORS的浏览器中尝试所有操作,则一切正常。 没有启用CORS。 谢谢!