通过 Htaccess 中的简单 Apache 设置加速网站 [zlib.output_compression + mod_deflate] 语法
想象一下,这两段代码驻留在 htaccess 中,用于加速网站速度。
在 apache 2.0 上使用 php 5.2.3
block A
# preserve bandwidth for PHP enabled servers
<ifmodule mod_php4.c>
php_value zlib.output_compression 16386
</ifmodule>
block B
# compress speficic filetypes
<IfModule mod_deflate.c>
<FilesMatch "\.(js|css|eot|ttf|svg|xml|ast|php)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
出现的问题:
Q1。这是将这两个块 A + B 组合成 1 个 htaccess 的正确方法吗?
Q2。在第二个块 B 上,mod_edflate 中再次使用 |php|
是否正确?
Imagine these two chunks of code residing in htaccess for speeding up the website.
With php 5.2.3 on apache 2.0
block A
# preserve bandwidth for PHP enabled servers
<ifmodule mod_php4.c>
php_value zlib.output_compression 16386
</ifmodule>
block B
# compress speficic filetypes
<IfModule mod_deflate.c>
<FilesMatch "\.(js|css|eot|ttf|svg|xml|ast|php)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
Questions that arise:
Q1. Is this the proper way to combine these two blocks A + B into 1 htaccess in the root?
Q2. Is it correct that on the second block B, |php|
is used again in the mod_edflate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 mod_deflate 已加载并且您可以控制 apache 配置,那么您应该让 apache 进行输出压缩。在 php 中进行压缩总是会变慢。这是我为您的 htaccess 推荐的配置:
我认为在这种情况下黑名单更有效,因为您不希望压缩的文件类型很少。这样您就可以确保压缩其他所有内容,甚至是您不记得添加到白名单中的那些类型的文件。
If mod_deflate is loaded and you can control apache configuration then you should let apache do output compression. Doing compression in php is always going to be slower. Here is my recommended config for your htaccess:
I think a blacklist is more effective in this case since there are very few types of files you don't want compressed. This way you make sure to compress everything else, even those types of files you can't remember to add to a whitelist.