php 网页提速优化

2007年12月02日 18:59 • 查看 921 次 • 打印本文

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 Y H:i:s",
time() + $offset) . " GMT";
header($ExpStr);
?>

最后记得在页面的 部分更改 css 的文件名,例:

<style type="text/css"> @import url("http://www.yoursite.com/pathto/cssfilename.php"); </style>

评论

发表评论