使用php.ini,.htaccess和zlib.output来压缩js,css和php文件

时间:2013-05-29 16:35:02

标签: php gzip

我一直试图用gzip压缩我的网站 - 虽然我的服务器不允许我使用mod_deflate,所以我在这里找到了另一种解决方案:http://www.warpconduit.net/2010/10/23/enabling-gzip-compression-of-php-css-and-js-files-without-mod_deflate/

它在我的根目录中的.php文件上创造奇迹,我想知道如何将它集成到我的js文件夹中

的php.ini

output_handler = Off
zlib.output_compression = On
zlib.output_handler = ob_gzhandler

的.htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*\.js) gzip.php?type=js&file=$1
RewriteRule ^(.*\.css) gzip.php?type=css&file=$1
</IfModule>

gzip.php文件位于上面的链接...

我是否必须为包含我要压缩的.js文件的每个文件夹添加额外的RewriteRule?例如:

Add,RewriteRule ^(system \ js.js)gzip.php?type = js&amp; file = $ 1

感谢您提供的任何帮助,过去几天我一直试图解决这个问题,最后觉得我到了某个地方。

0 个答案:

没有答案