mod_deflate不压缩root的子目录

时间:2012-12-14 00:55:28

标签: wordpress .htaccess gzip deflate

我大约需要48小时才能解决gzip deflate问题并意识到我可能需要寻求帮助,呵呵。

我意识到我需要在我的php.ini文件中打开压缩后,终于通过.htaccess在我的共享Unix服务器上启用了deflate模块。

PageSpeed告诉我,我的根HTML是用网站的gzip编码的,我在Wordpress网站上得到了77.3%的压缩theoleandersofsanleon.com但是没有压缩任何子目录中的文件(主要是css和js文件)在我的wordpress目录和它的子目录中。

我认为没有必要,但我继续尝试使用指令目录,然后指令位置无效。

如果您需要查看任何服务器规格,我会在根目录中放置一个phpinfo.php文件。

以下是我的.htaccess文件中我的htdocs目录和wordpress目录的内容:

<IfModule mod_deflate.c>
# Insert filters
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/x-httpd-php
AddOutputFilterByType DEFLATE application/x-httpd-fastphp
AddOutputFilterByType DEFLATE image/svg+xml

# Drop problematic browsers
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</IfModule>

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

如果您需要更多信息,请告诉我,非常感谢您的帮助,我将非常感激,我将能够让我的头发重新开始8 - )

1 个答案:

答案 0 :(得分:0)

在顶级.htaccess文件中尝试此操作。这是在cPanel中使用优化器时生成的内容。

<IfModule mod_deflate.c>
    SetOutputFilter DEFLATE
  <IfModule mod_setenvif.c>
    # Netscape 4.x has some problems...
    BrowserMatch ^Mozilla/4 gzip-only-text/html

    # Netscape 4.06-4.08 have some more problems
    BrowserMatch ^Mozilla/4\.0[678] no-gzip

    # MSIE masquerades as Netscape, but it is fine
    # BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

    # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
    # the above regex won't work. You can use the following
    # workaround to get the desired effect:
    BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

    # Don't compress images
    SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
  </IfModule>

  <IfModule mod_headers.c>
    # Make sure proxies don't deliver the wrong content
    Header append Vary User-Agent env=!dont-vary
  </IfModule>
</IfModule>