在wordpress媒体资产上设置HTTP标头变量

时间:2016-11-11 05:17:45

标签: wordpress custom-wordpress-pages

我希望我的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();
    }
}

0 个答案:

没有答案