Skip to content

Instantly share code, notes, and snippets.

@SergeyZaigraev
Created June 19, 2017 08:31
Show Gist options
  • Save SergeyZaigraev/6bb959c2be81c27abcf4922b547cd9a3 to your computer and use it in GitHub Desktop.
Save SergeyZaigraev/6bb959c2be81c27abcf4922b547cd9a3 to your computer and use it in GitHub Desktop.

Revisions

  1. SergeyZaigraev created this gist Jun 19, 2017.
    19 changes: 19 additions & 0 deletions .htaccess
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    # Включаем кэш в браузерах посетителей
    <ifModule mod_headers.c>
    # Все html и htm файлы будут храниться в кэше браузера один день
    <FilesMatch "\.(html|htm)$">
    Header set Cache-Control "max-age=43200"
    </FilesMatch>
    # Все css, javascript и текстовые файлы будут храниться в кэше браузера одну неделю
    <FilesMatch "\.(js|css|txt)$">
    Header set Cache-Control "max-age=604800"
    </FilesMatch>
    # Все флэш файлы и изображения будут храниться в кэше браузера одну неделю
    <FilesMatch "\.(flv|swf|ico|gif|jpg|jpeg|png)$">
    Header set Cache-Control "max-age=604800"
    </FilesMatch>
    # Отключаем кеширование php и других служебных файлов
    <FilesMatch "\.(pl|php|cgi|spl|scgi|fcgi)$">
    Header unset Cache-Control
    </FilesMatch>
    </IfModule>