如何禁用缓存单个文件

时间:2013-12-11 11:26:34

标签: .htaccess

我有一个名为xxx.php的文件,在htaccess中我有

<ifModule mod_deflate.c>
    <filesMatch "\.(js|css|html|php)$">
        SetOutputFilter DEFLATE
    </filesMatch>
</ifModule>

如何禁用缓存的xxx.php文件?

1 个答案:

答案 0 :(得分:0)

使用否定前瞻来排除xxx.php

<FilesMatch "^(?!xxx\.php$).*\.(js|css|html|php)$">
   SetOutputFilter DEFLATE
</FilesMatch>