我希望我的wordpress资产wp-content / uploads / 2016/11 / stellar.toml返回额外的HTTP标头。我尝试将以下内容添加到我的functions.php中,但标头变量不起作用。任何人都可以看到我是否遗漏了什么?
add_action('template_redirect','yoursite_template_redirect');
function yoursite_template_redirect() {
if ($_SERVER['REQUEST_URI']=='wp-content/uploads/2016/11/stellar.toml')
{
header("Access-Control-Allow-Origin: *");
echo 'data';
exit();
}
}