Enable keep-alive using .htaccess
If you do not have access to your webserver config file you can enable keep-alive yourself using an .htaccess file.
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>
Adding this to your .htaccess file will add keep alive headers to your requests, which will override most webserver or host limitations.