Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请为我提供一个在 codeigniter 中缓存网页的示例。视图页面将始终保持不变,即静态视图页面。加载一个经常使用的网页需要很长时间。
请将 htaccess 文件放入文件夹并写入:
Header set Cache-Control "max-age=29030400, public"
现在请将此 htaccess 文件放在要缓存的文件的文件夹中。
在视图内,您可以添加
$this->output->cache(n);
其中 n 是您希望页面在刷新之间保持缓存的分钟数。