Created
November 11, 2016 17:01
-
-
Save yaroslavthedev/356067ab3057242f932231727f9dca30 to your computer and use it in GitHub Desktop.
Включить кеширование через .htaccess / Enable the cache using .htaccess
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Включаем кэширование через .htaccess | |
# Автор: Nc_Soft | |
# 06.09.10 | |
FileETag MTime Size | |
<ifmodule mod_expires.c> | |
<filesmatch ".(jpg|gif|png|css|js)$"> | |
ExpiresActive on | |
ExpiresDefault "access plus 1 year" | |
</filesmatch> | |
</ifmodule> | |
#можете прописать это на своем хостинге | |
#например, на jino.ru это ускоряет загрузку сайта | |
#(отдельный вопрос к хостерам, которые не ставят заголовки кэширования на статику, ну да фиг с ними) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment