板のhtmlをindex.htmlからindex.phpにして、
それをこんな風にすると少しは転送量削減になるかな?

<?php
ob_start();
?>
<html>
<head>
<title>板のタイトル</title>
(以下略)
</html>
<?php
if ( stristr('gzip', getenv('HTTP_ACCEPT_ENCODING')) ) {
$contents = ob_get_contents();
ob_end_clean();
header('Content-Encoding: gzip');
echo gzcompress($contents);
exit;
} else {
ob_end_flush();
exit;
}
?>