I have a PHP file that will return the same thing with the same $_GET parameters every time -- it\'s deterministic.
Unfortunately for efficiency (this file is reques
Have you tried header("HTTP/1.0 304 Not Modified"); in your PHP code that is getting called? If unfamiliar you will want to put that in your code BEFORE you start outputting anything to the buffer.
header("HTTP/1.0 304 Not Modified");
http://php.net/manual/en/function.header.php