WordPress开发函数cache_javascript_headers(),使用JavaScript内容类型设置10天的缓存头。
用法:
cache_javascript_headers()
来源
文件: wp-includes/functions.php
function cache_javascript_headers() {
$e**iresOffset = 10 * DAY_IN_SECONDS;
header( ‘Content-Type: text/javascript; charset=’ . get_bloginfo( ‘charset’ ) );
header( ‘Vary: Accept-Encoding’ ); // Handle proxies.
header( ‘E**ires: ‘ . gmdate( ‘D, d M Y H:i:s’, time() + $e**iresOffset ) . ‘ GMT’ );
}
更新日志:
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容