Skip to content

Instantly share code, notes, and snippets.

@yatil
Created August 22, 2011 07:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yatil/1161869 to your computer and use it in GitHub Desktop.
Save yatil/1161869 to your computer and use it in GitHub Desktop.
Using beanstalks .revision file to assure that the latest CSS gets to the browsers when using aggressive caching
<?php
$content = file('/path/to/.revision');
//First line: $content[0];
define('REV',trim($content[0]));
?>
<link rel="stylesheet" href="style.css?v=<?=REV?>">
@Luciaisacomputer
Copy link

I was wondering what this file was! This is excellent, thanks for the gist, it will work perfectly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment