I have a web page that over_writes a CSS file when the page admin changes a few attributes through a web form and a database table. My problem is that the browser sometimes caches the old file and ignores the new version. It has been suggested to me that I should use a file versioning scheme that would basically change the name of the file so that I would never have to worry about the browser caching the old version. Is there any other way around this problem besides the versioning scheme?
1条回答 默认 最新
doujian0265 2017-03-03 03:54关注When including your CSS file in the HTML header, you could simply add a parameter to the query string:
<link rel="stylesheet" href="style.css?v=2">In your case, you could increment this number programmatically every time the page admin changes something (assuming you have set
$cssVersionsomewhere):<link rel="stylesheet" href="style.css?v=<?php echo $cssVersion; ?>">You would have to store
$cssVersionin a database column or in a file.本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报