Skip to content

Instantly share code, notes, and snippets.

@mattbanks
Created August 15, 2013 13:29
Show Gist options
  • Save mattbanks/6240814 to your computer and use it in GitHub Desktop.
Save mattbanks/6240814 to your computer and use it in GitHub Desktop.
PHP no caching expires headers
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment