1
0

empty.php 382 B

12345678910
  1. <?php
  2. header( "HTTP/1.1 200 OK" );
  3. header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
  4. header("Cache-Control: post-check=0, pre-check=0", false);
  5. header("Pragma: no-cache");
  6. header("Connection: keep-alive");
  7. header('Access-Control-Allow-Origin: *');
  8. header('Access-Control-Allow-Methods: GET, POST');
  9. header('Access-Control-Allow-Headers: Content-Encoding');
  10. ?>