Apache removes one line from header, and i don't know why. Here is PHP code
header("status: 200");
header("test: 200");
When I check response with Fiddler, second line in header line with "status" is missing but "test" is present. This happens on new server only and i don't know what to check. Both servers are hosted, so i do not have luxury to inspect them.
I tried looking for .htaccess and mod_header settings but could not find anything.
Edit #1: i have header("HTTP/1.1 200 OK"); before lines above. So response code is good, but client needs to see this "status: 200" in response because legacy application expects it.
Edit #2: the question is why does one server leaves "status: 200" and the other one does not.
Please help.