mod deflate不压缩root的子目录

Wil*_*rds 6 wordpress .htaccess gzip deflate

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

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

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

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

如果您需要查看任何服务器规格,我会在根目录中放置一个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
Run Code Online (Sandbox Code Playgroud)

请让我知道如果你需要任何更多的信息,非常感谢你的帮助,这将不胜感激,我就可以开始让我的头发长回来8-)

Mar*_*ark 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>
Run Code Online (Sandbox Code Playgroud)