Configure Apache with a htaccess file to strip out unneeded respond-headers.
- by Koning Baard XIV
For ultimate speed, I want my Apache server strip unneeded headers from the response.
Currently, the headers looks like this (excluding the status header):
Connection:Keep-Alive
Content-Length:200
Content-Type:text/html
Date:Sat, 15 May 2010 16:28:37 GMT
Keep-Alive:timeout=5, max=100
Server:Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8l DAV/2 PHP/5.3.1 Phusion_Passenger/2.2.7
X-Powered-By:PHP/5.3.1
Which I want to be like:
Connection:Keep-Alive
Content-Type:text/html
Keep-Alive:timeout=5, max=100
How can I configure this in a .htaccess file? Thanks