这个解决方案是用PHP编写的,但它应该很容易适应其他语言。
原始正则表达式可能会导致 ..解决方案是仅在末尾正好有 10 位数字时才重写。(因为 10 位数字涵盖从 9/9/2001 到 11/20/2286 的所有时间戳。.htaccess
json-1.3.js
首先,我们在 .htaccess 中使用以下重写规则:
RewriteEngine on
RewriteRule ^(.*)\.[\d]{10}\.(css|js)$ $1.$2 [L]
现在,我们编写以下 PHP 函数:
/**
* Given a file, i.e. /css/base.css, replaces it with a string containing the
* file's mtime, i.e. /css/base.1221534296.css.
*
* @param $file The file to be loaded. Must be an absolute path (i.e.
* starting with slash).
*/
function auto_version($file)
{
if(strpos($file, '/') !== 0 || !file_exists($_SERVER['DOCUMENT_ROOT'] . $file))
return $file;
$mtime = filemtime($_SERVER['DOCUMENT_ROOT'] . $file);
return preg_replace('{\\.([^./]+)$}', ".$mtime.\$1", $file);
}
现在,无论你在哪里包含你的CSS,都可以从这个改变它:
<link rel="stylesheet" href="/css/base.css" type="text/css" />
对此:
<link rel="stylesheet" href="<?php echo auto_version('/css/base.css'); ?>" type="text/css" />
这样,您就不必再次修改链接标签,用户将始终看到最新的CSS。浏览器将能够缓存CSS文件,但是当您对CSS进行任何更改时,浏览器将将其视为新的URL,因此它不会使用缓存的副本。
这也适用于图像,图标和JavaScript。基本上任何不是动态生成的。