반응형
아파치 캐싱이 안걸리는경우가 많은데
x-cache-detail: "Query string present but no explicit expiration time"
이런 메세지를 띄우며 캐싱이 MISS나는 경우는
말그래도 쿼리스트링은 있는데 시간설정은 없다는 뜻이다.
아파치 로케이션 설정에
캐싱을 걸어야 하는 폴더명을 잡아 설정을 걸어주자
<location /폴더명>
Header set Cache-Control "public, max-age=600, s-maxage=600"
</location>
시간설정은 아파치 설정을 참조하자
https://httpd.apache.org/docs/2.4/ko/mod/mod_expires.html
728x90
반응형
'linux > apache' 카테고리의 다른 글
cache와 access-control-allow-origin 동시에 잡기 다중도메인 (0) | 2021.09.30 |
---|---|
rewrite 특정폴더 설정 제외 (0) | 2021.09.28 |
rewrite 특정 query만 삭제하기 (0) | 2021.09.28 |
apache SSL 500 ERROR (0) | 2021.09.17 |
apache cache attempting entity save (0) | 2021.07.16 |