2013-11-02 46 views
4

我在heroku应用程序的.htaccess文件中运行HTML5 Boilerplate压缩。然而,它似乎并没有工作,没有任何文件实际上被压缩。如何在heroku上的PHP应用程序中启用压缩?

我加入了Heroku的PHP buildpack有:

heroku config:set BUILDPACK_URL=https://github.com/heroku/heroku-buildpack-php 

,但似乎并没有做任何事情。我对Heroku相当陌生,所以有人有任何建议吗?

HTML5样板的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/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> 

+0

他已经尝试了他的服务器。 – jacouh

回答

2

我发现,使用不同的buildpack工作!

heroku config:set BUILDPACK_URL=http://github.com/iphoting/heroku-buildpack-php-tyler 

这是一个很棒的buildpack,可以实现gzip压缩并安装新的文物。

+0

对我来说它显示一个错误:“stdin:不是gzip格式”。我应该在heroku上安装一些插件吗? – rodrigorf

+0

我得到了同样的错误@rodrigorf –

+0

仍然收到相同的错误@EzraObiwale,迄今为止没有解决方案。 – rodrigorf

相关问题