Para aumentar la velocidad de su sitio puede comprimir el contenido que se entrega al cliente, en su cPanel vaya a:
Software / Optimizar el sitio web
Seleccione el tipo de compresión que desee y haga clic en Actualizar configuración
Para habilitar el caché de su sitio web deberá agregar lo siguiente a su archivo .htaccess
# 1 AÑO
<FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$">
Header set Cache-Control "max-age=31536000, public"
</FilesMatch>
# 1 SEMANA
<FilesMatch "\.(jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>
# 3 HORAS
<FilesMatch "\.(txt|xml|js|css)$">
Header set Cache-Control "max-age=10800"
</FilesMatch>
# NO CACHE - note las directivas adicionales
<FilesMatch "\.(html|htm|php|cgi|pl)$">
Header set Cache-Control "max-age=0, private, no-store, no-cache, must-revalidate"
</FilesMatch>