>  기사  >  백엔드 개발  >  Apache mod_expires 캐시 정적 파일

Apache mod_expires 캐시 정적 파일

伊谢尔伦
伊谢尔伦원래의
2016-11-25 15:14:031163검색

정적 파일 캐싱을 채택하면 서버 성능이 향상될 수 있으며 다음과 같은 이점이 있습니다.

1. 서비스 응답 시간 단축

2. 🎜>

3. 네트워크 대역폭 사용량 줄이기

프로그램 수정 방법

정적 콘텐츠(css, js 등)가 변경될 때마다 이름도 변경됩니다.

버전 번호 또는 빌드 번호를 추가하세요.

<link href="/html/std.css?v=2.5.3.text" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="html/std.css?_v=804120090827100441.css" />
서버 측의 실제 CSS 파일 이름은 여전히 ​​std.css이며, html 페이지에 버전 번호를 추가해야 합니다.

버전 번호를 추가한 후 사용자는 Ctrl+F5를 눌러 새로 고치지 않고도 CSS나 js를 업데이트할 때마다 수정된 페이지를 볼 수 있습니다.

Apache 수정 방법:

Apache 설치 시 구성 단계에서 --enable-expires를 추가하세요.

설치 후에는 Apache 설치 디렉터리의 모듈 디렉터리에 mod_expires.so

가 있습니다. 동시에

LoadModule expires_module modules/mod_expires.so
httpd.conf도 있습니다. 구성은 Httpd.conf에 자동으로 추가됩니다.

ExpiresActive on
#缓存3天。
ExpiresBytype text/css "access plus 3 days
ExpiresByType application/x-javascript "access plus 3 days "
ExpiresByType image/jpeg "access plus 3 days "
Expiresbytype image/gif "access plus 3 days "


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.