排除文件匹配中的文件
使用的每个文件的开头添加一个 gzip 脚本
php_value auto_prepend_file gzip_start.php
我试图在 .htaccess 中 。问题是我已经有了一个名为combine.php 的文档,它对其内容进行了gzip 压缩。我需要知道的是,如何从预先添加 gzip 的文件中排除ombine.php。我考虑过使用 filesmatch,但只能弄清楚如何在一个文件上执行此操作,而不是完全相反。
有什么想法吗?
I'm trying to prepend a gzip script at the beginning of every file using
php_value auto_prepend_file gzip_start.php
in my .htaccess. The problem is that I've already got a document called combine.php that gzips it contents. What I need to know is, how I can exclude combine.php from the files who get the gzip prepended. I thought about using filesmatch, but can only figure out how to do it on just that one file, and not the exact opposite.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将此代码放在 gzip_start.php 的开头:
阅读 PHP 文档:
在这种情况下,gzip_start.php 包含在您拥有的每个脚本中,combine.php 也是如此,因此您可以检查哪个脚本包含该文件,然后执行以下操作压缩或如果必须忽略文件则跳过它。
Put this code at the beginning of gzip_start.php :
Reading the PHP doc :
In this case, gzip_start.php is included by every script you have, combine.php too, so you can check which script is including the file and then do the compression or skip it if the file has to be ignored.