Access-Control-Allow-Origin is typically declared as an HTTP header to enable a browser to fetch content from remote domains. Is it possible for this to be declared via the HTML <meta> tag?

有帮助吗?

解决方案

No. Only real HTTP headers can be used for this.

其他提示

In .html files

In .php files header('Access-Control-Allow-Origin: *');

Try this:

Client Side

<meta http-equiv="Access-Control-Allow-Origin" content="*" />

Server Side

Remember that you must include the corresponding header.

PHP Example:

header('Access-Control-Allow-Origin: *'); 

You MUST have the HTML tag AND the Server Header.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top