我有一个名为xxx.php的文件,在htaccess中我有
<ifModule mod_deflate.c>
<filesMatch "\.(js|css|html|php)$">
SetOutputFilter DEFLATE
</filesMatch>
</ifModule>
如何禁用缓存的xxx.php文件?
答案 0 :(得分:0)
使用否定前瞻来排除xxx.php
:
<FilesMatch "^(?!xxx\.php$).*\.(js|css|html|php)$">
SetOutputFilter DEFLATE
</FilesMatch>