설명:
압축된 파일은 서버에 캐시되므로 다시 액세스할 때 재압축 시간과 CPU 사용량이 줄어듭니다.
클라이언트 파일 캐시 시간을 설정하고 재요청 횟수를 줄이면 85% 이상 줄일 수 있습니다.
이미지가 이미 압축된 형식이기 때문에 클라이언트 캐시 시간만 설정되고 압축은 수행되지 않습니다.
사용방법 :
서버는 gzip 및 Rewrite 기능을 지원해야 합니다.
다음 코드를 추가합니다. RewriteRule (..css$|..js$|..jpg$|..gif$|. *.png$) gzip.php?$1
gzip.php를 루트 디렉터리에 업로드
4. 읽기 및 쓰기가 가능하도록 루트 디렉터리에 캐시 폴더를 만듭니다.
- /**
- * @author Seraphim
- * @copyright 2012
- */
- //
- 함수 sendheader($last_modified, $p_type, $content_length = 0)
- {
- // 클라이언트 캐시 유효 시간 설정
- header("Expires: " . gmdate("D, d M Y H:i: s" , time() 15360000) . "GMT");
- header("Cache-Control: max-age=315360000");
- header("Pragma: ");
- // 마지막 수정 사항 설정 time
- header("Last-Modified: " . $last_modified);
- // 파일 형식 정보 설정
- header($p_type);
- header("Content-Length: " . $content_length ) ;
- }
- define('ABSPATH', dirname(__file__) . '/');
- $cache = true;
- $cachedir = 'cache/' //gz 파일 디렉터리 저장, 쓰기 가능한지 확인하세요
- if (empty($_SERVER['QUERY_STRING']))
- exit();
- $gzip = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
- if (비어 있음($gzip))
- $cache = false;
- $key = array_shift(explode('?', $_SERVER['QUERY_STRING']));
- $key = str_replace( '../', '', $key);
- $filename = ABSPATH . $key;
- $symbol = '_';
- $rel_path = str_replace(ABSPATH, '', dirname($ filename));
- $namespace = str_replace('/', $symbol, $rel_path);
- $cache_filename = ABSPATH . $cachedir . $namespace .
- ' .gz'; //gz 파일 경로 생성
- $ext = array_pop(explode('.', $filename)) //접미사를 기준으로 파일 형식 정보 판단
- $type = "Content-type: text / html"; //기본 파일 유형
- switch ($ext)
- {
- case 'css':
- $type = "Content-type: text/css";
- break;
- 케이스 'js':
- $type = "콘텐츠 유형: text/javascript";
- break;
- 케이스 'gif':
- $cache = false;
- $type = "콘텐츠 유형: 이미지/gif";
- break;
- 케이스 'jpg':
- $cache = false;
- $type = "콘텐츠 유형: image/jpeg";
- break;
- 케이스 'png':
- $cache = false;
- $type = "콘텐츠 유형: 이미지/png";
- break;
- 기본값:
- 종료( );
- }
- if ($cache)
- {
- if (file_exists($cache_filename))
- { // gz 파일이 존재하는 경우
- $mtime = filemtime($cache_filename) ;
- $gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ' GMT';
- if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && array_shift(explode(' ;', $_SERVER['HTTP_IF_MODIFIED_SINCE'])) ==
- $gmt_mtime))
- {
- // 브라우저 캐시의 파일 수정 날짜와 일치하여 304
- 헤더를 반환합니다("HTTP /1.1 304 Not Modified");
- // 클라이언트 헤더 보내기
- header("Content-Encoding :gzip");
- sendheader($gmt_mtime, $type);
- }
- else
- {
- // gz 파일 출력 읽기
- $content = file_get_contents($cache_filename);
- // 클라이언트 헤더 보내기
- sendheader($gmt_mtime, $type, strlen($ content)) ;
- header("Content-Encoding: gzip");
- // 데이터 보내기
- echo $content;
- }
- }
- else
- if (file_exists ($filename ))
- { // 해당 gz 파일이 없습니다
- $mtime = mktime();
- $gmt_mtime = gmdate('D, d M Y H:i:s', $mtime) . ;
- // 파일 읽기
- $content = file_get_contents($filename);
- // 빈 부분 제거
- // $content = ltrim($content);
- / / 압축 file content
- $content = gzencode($content, 9, $gzip ? FORCE_GZIP : FORCE_DEFLATE);
- // 클라이언트 헤더 보내기
- sendheader($gmt_mtime, $type, strlen($content) );
- header("Content-Encoding: gzip");
- // 데이터 보내기
- echo $content;
- // 파일 쓰기
- file_put_contents($cache_filename, $content)
- }
- else
- {
- header("HTTP/1.0 404 Not Found");
- }
- }
- else
- { // 출력 처리에 Gzip 모드를 사용하지 마세요. 아래에. 원칙은 기본적으로 위와 같습니다
- if (file_exists($filename))
- {
- $mtime = filemtime($filename);
- $gmt_mtime = gmdate('D, d M Y H:i :s', $ mtime) . ' GMT';
- if ((isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && array_shift(explode(';', $_SERVER['HTTP_IF_MODIFIED_SINCE'])) ==
- $gmt_mtime))
- {
- // 브라우저 캐시의 파일 수정 날짜와 일치하여 304
- 헤더를 반환합니다("HTTP/1.1 304 Not Modified");
- // 클라이언트 헤더 보내기
- sendheader ($gmt_mtime, $type, strlen($content));
- header("Content-Encoding :gzip");
- }
- else
- {
- // 읽기 파일 출력
- $content = file_get_contents($filename);
- // 클라이언트 헤더 보내기
- sendheader($gmt_mtime, $type, strlen($content));
- // 데이터 보내기
- echo $ content;
- }
- }
- else
- {
- header("HTTP/1.0 404 Not Found");
- }
- }
- ?>
코드 복사
|