如何禁用特定路由的gzip?

时间:2017-07-09 08:40:21

标签: php android apache laravel .htaccess

在Android客户端中,我们使用此downloader library。这是一个很棒的库,但在从URL下载文件之前需要文件大小。如果您添加gzip下载程序库,则无法获取最终文件大小(因此无效)。

根据某些需求,我们应该为我们的代码(Laravel)启用gzip

现在我们要禁用特定路线的gzip

这是我的.htaccess内容:

SetEnv no-gzip  dont-vary
<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    RewriteEngine On



    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

0 个答案:

没有答案