0

最近mod_defalte在我的服务器上启用以压缩某些文件。

我认为设置不会导致文件出现任何问题,.swf但自从我遇到与.swf文件运行相关的问题但没有通过加载屏幕。

mod_deflate 目录 htaccess 配置

<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</ifmodule>

我注意到似乎有很多与压缩和.swf文件有关的问题,但我不确定mod_deflate当它设置为如上运行时为什么会影响它们?

可能的原因?

我在 WHM -> Apache 配置 -> 包含编辑器中确实有以下设置,这些是默认mod_deflate设置还是我添加的内容?

我只想像上面的例子一样做一个基本的配置,我应该删除post_virtualhost_global.conf设置吗?

mod_deflate - post_virtualhost_global.conf

<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>

资源

mod_deflate 和.swfflash 文件问题:https ://www.google.co.uk/search?q=mod+defalte+defaults&oq=mod+defalte+defaults&aqs=chrome..69i57j69i60l5.3099j0&sourceid=chrome&espv=210&es_sm=122&ie=UTF-8 #es_sm=122&espv=210&psj=1&q=mod_deflate+flash+files

4

1 回答 1

2

您的 Web 服务器配置中的此指令:

SetOutputFilter DEFLATE

为所有文件启用 DEFLATE 压缩。您不希望这样 - 除了弄乱 Flash 文件外,对于已经压缩的数据(包括大多数图像格式)来说,这是浪费时间。删除它,以及它后面的所有过时的废话。(您所拥有的大部分内容都是针对史前浏览器和 Web 服务器的解决方法。)

于 2013-10-13T23:02:01.847 回答