php 网页提速优化

2007-12-02 18:59

php 网页提速优化: 1) 在 PHP 页面的顶部加上: <?php ob_start( 'ob_gzhandler' ); ?> 2) 把 CSS 文件名改为 xxx.css.php, 然后在文件顶部加上: <?php ob_start ("ob_gzhandler"); header("Content-type: text/css; charset: UTF-8"); header("Cache-Control: must-revalidate"); $offset = 60 * 60 ; $ExpStr = "Expires: " . gmdate("D, d M... [阅读全文]