这是一个HTTP标头。您可以配置您的Web服务器或Web应用程序来理想地发送此标题。也许在htaccess或PHP。
或者您可能能够使用
...我不知道这是否会工作。并非所有HTTP标头都可以直接在HTML中配置。
这可以作为许多HTTP头的替代,但请参阅下面的@EricLaw的评论。这个特殊的标题是不同的。
买者
这个答案是严格有关如何设置标头。我不知道任何有关允许跨域请求的信息。
关于HTTP头
每个请求和响应了头。浏览器将其发送到web服务器
GET /index.htm HTTP/1.1
然后,报头
Host: www.example.com
User-Agent: (Browser/OS name and version information)
.. Additional headers indicating supported compression types and content types and other info
然后,服务器发送一个响应
Content-type: text/html
Content-length: (number of bytes in file (optional))
Date: (server clock)
Server: (Webserver name and version information)
附加报头可以被配置成例如Cache-Control,这完全取决于你的语言(PHP,CGI,Java,htaccess)和web服务器(Apache等)。