blob: 510eaa2642c6a47134af6c1b654092ab94177bc0 [file] [log] [blame]
<?
header('ETag: foo');
header('Cache-control: max-age=0');
if ($_GET['type'] == 'css') {
header('Content-Type: text/css');
}
if ($_SERVER['HTTP_IF_NONE_MATCH'] == 'foo') {
header('HTTP/1.1 304 Not Modified');
exit;
}
?>
foo