parser

Написать ответ на текущее сообщение

 

 
   команды управления поиском

Инструкции mod_deflate?

Maxx 25.07.2007 22:36 / 25.07.2007 22:42

Они не в .htaccess а в виртуальном хосте, т.е. действуют на все, а не на document-root:
<VirtualHost *>
    ServerAdmin ..mail..
    ServerName ..name..
    ServerAlias ..name..
    DocumentRoot ......../www/
    ErrorLog ......../error_log
    CustomLog ......../access_log combined
    HostnameLookups Off
    UseCanonicalName Off
    ServerSignature Off
    ScriptAlias /cgi-bin/ "......../cgi-bin/"

    AddOutputFilterByType DEFLATE text/html text/css text/xml
    DeflateFilterNote ratio
    DeflateFilterNote Input instream
    DeflateFilterNote Output outstream
    LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
    CustomLog ......../deflate_log deflate

    <Directory "......../cgi-bin/">
	AllowOverride None
	Options +ExecCGI -Includes
	Order allow,deny
	Allow from all
    </Directory>
    <Directory "......../www/">
	Options -Indexes FollowSymLinks
	AllowOverride All
	Order allow,deny
	Allow from all
   </Directory>
</VirtualHost>
Здесь ....... путь до $HOME проекта

P.S. тут же, кстати, видно что перепопределения в .htaccess в cgi-bin - запрещены