Removing X-Powered-By

后端 未结 8 2310
温柔的废话
温柔的废话 2020-12-02 05:11
  1. How can I remove X-Powered-By header in PHP? I am on an Apache Server and I use php 5.21. I can\'t use the header_remove function in php as it\'s not supported by 5

8条回答
  •  庸人自扰
    2020-12-02 05:58

    if (function_exists('header_remove')) {
        header_remove('X-Powered-By'); // PHP 5.3+
    } else {
        @ini_set('expose_php', 'off');
    }
    

提交回复
热议问题