我希望有人能告诉我为什么APC Cache会缓存非PHP文件?此问题仅发生在我的某个网站上,其他网站未受影响。
以下是我如何包含页脚文件:
<?php
$basedir = "/www/example.com/httpdocs";
...
...
?>
<div id="footer">
<?php include($basedir . '/include/footer.htm'); ?>
</div>
我做错了吗? APC统计表显示文件在缓存清除后的2天内已达到21,000次以上。
有什么想法吗?