정적 파일 캐싱을 채택하면 서버 성능이 향상될 수 있으며 다음과 같은 이점이 있습니다.
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.sohttpd.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 "