3

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?

ir-g
  • 252
  • 1
  • 3
  • 18

3 Answers3

4

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

Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335
0

In .html files

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

0

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.

Antoine
  • 1,393
  • 4
  • 20
  • 26