6

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

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

PageSpeed 告诉我,我的根 HTML 是用 gzip 编码的网站,我为 Wordpress 网站 theoleandersofsanleon.com 获得了 77.3% 的压缩,但任何子目录中的文件都没有被压缩(主要是我的 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

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

4

1 回答 1

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>
于 2013-01-03T12:17:37.690 回答