Search code examples
phpapachehttp-headerscontent-type

Remove Content-Type header in apache


How to remove header content-type in apache ?

The following code does not work

header_remove('content-type');


Solution

  • Try this.

    header("content-type: none");
    

    I don't know why, but it's worked for me.

    I cannot find any reference mentioned about this. but it's simply removed the content-type from header for me. It' may be apache's bug or PHP's bug. So try it and use it with careful.