我正在使用 firefox 21 并希望阻止浏览器缓存声音文件。我将此数据发送到浏览器:
header('Cache-Control: no-cache,must-revalidate',true); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
$test = $path.$filename;
<audio autoplay="autoplay">
<source src="<? echo $test; ?>" type="audio/mp3" />
</audio>
在服务器上,我更改了文件名和/或文件内容。浏览器不会通过重新加载页面来更新声音。标题有问题吗?