hello. i want to use gzip for my web. so i am start to searching google. then 2 code. 1 > what must i do with this code?where i must put it??? gzip-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); ?> then htaccess addons HTACCESS ADDON <<< where must i put?? AddHandler application/x-httpd-php .css php_value auto_prepend_file gzip-css.php php_flag zlib.output_compression On any one can helping me out from my problem?? thanks
i already try it. but syntax error. 403 error. so do you have a clue where i must put that code? can you gimme example?? Thanks Eric
The PHP code (the first block) must be in the PHP file for the page. The htaccess code must be in the .htaccess file. But if you have to ask these questions, I don't think you're going to be able to fix things yourself. Sorry, but it's not as simple as you want it to be. (And your site may already be using gzip, so that may not be the reason it's slow. Without even a link to the site, there's no way we can even make a wild guess as to what the problem is.)