0

enter image description here

I want to change the 'SERVER["HTTP_CONNECTION"]' status keep-alive to close.

in wamp -> httpd-default.conf its show KeepAlive On

I already try to 'KeepAlive Off' but it doesn't works. I want to set it off.

DsRaj
  • 2,288
  • 1
  • 16
  • 26
  • Possible duplicate of [How to override Apache keep-alive header using php?](http://stackoverflow.com/questions/15308404/how-to-override-apache-keep-alive-header-using-php) – iam-decoder Mar 16 '16 at 07:36

1 Answers1

0

This is not possible:

$_SERVER['HTTP_CONNECTION'] is the value of the HTTP Connection header sent as part of the request by the client. It is not a server setting. You cannot change it and you cannot force the client to send another value in that header. It's up to the client.

Resource

Community
  • 1
  • 1
NormundsP
  • 445
  • 2
  • 7
  • 16