Mee Place .htacces tricks /трюки

uMarian

Создатель
Регистрация
21 Июн 2011
Сообщения
10
Реакции
0
EN: For those who want to optimize a website quickly according google page speed add the following lines in .htacces
RU: Для тех, кто хочет оптимизировать веб-сайт быстро по Google Page скорости добавить следующие строки в. Htacces
sorry for my bad language / Извините за мой плохой язык



<FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$">
Header set Cache-Control "max-age=29030400, public"
Header unset Last-Modified
</FilesMatch>


<FilesMatch "\.(jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=29030400, public"
</FilesMatch>


<FilesMatch "\.(txt|xml|js|css)$">
Header set Cache-Control "max-age=29030400"
</FilesMatch>


<FilesMatch "ga.js">
Header set Cache-Control "max-age=29030400"
</FilesMatch>




# handler for phpsuexec..
<FilesMatch "\.(css|style)$">
SetHandler application/x-httpd-php
</FilesMatch>



# handler for js..
<FilesMatch "\.(text|javascript)$">
Header set Cache-Control "max-age=29030400, public"
</FilesMatch>



# Or, compress certain file types by extension:
<Files *.html>
SetOutputFilter DEFLATE
</Files>







EN:i use this code for: joomla , oxyclassifieds and meeplace
RU:я использую этот код для: Joomla, oxyclassifieds и meeplace
if i do something wrong sry :(
 
Назад
Сверху