我尝试解决 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-)