簡體   English   中英

CodeIgniter GZIP壓縮問題

[英]CodeIgniter GZIP compression issue

我正在使用CodeIgniter HMVC開發網站。

  1. 我已經在server(cPanel)中啟用了GZIP壓縮。
  2. 我已在CodeIgniter Config( $config['compress_output'] = TRUE; )中啟用了壓縮
  3. 我添加了ob_start("ob_gzhandler"); index.php文件的頂部。
  4. 我在.htaccess文件中添加了DEFLATE。

當我測試根域( https://seocompany.us.com/ )是GZIP壓縮的。

但是,當我測試其他任何頁面( https://seocompany.us.com/services )時,錯誤表明未啟用GZIP。

如果您在cPanel中做到了,那就足夠了。

或者你可以在htaccess中做到這一點

# Force compression for mangled headers.
# http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
<IfModule mod_setenvif.c>
    <IfModule mod_headers.c>
        SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
        RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
    </IfModule>
</IfModule>

# Compress all output labeled with one of the following MIME-types
# (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
#  and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
#  as `AddOutputFilterByType` is still in the core directives).
<IfModule mod_filter.c>
    AddOutputFilterByType DEFLATE application/atom+xml \
                                  application/javascript \
                                  application/json \
                                  application/ld+json \
                                  application/rss+xml \
                                  application/vnd.ms-fontobject \
                                  application/x-font-ttf \
                                  application/x-web-app-manifest+json \
                                  application/xhtml+xml \
                                  application/xml \
                                  font/opentype \
                                  image/svg+xml \
                                  image/x-icon \
                                  text/css \
                                  text/html \
                                  text/plain \
                                  text/x-component \
                                  text/xml
</IfModule>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM