1
0

empty.php 449 B

1234567891011121314
  1. <?php
  2. header('HTTP/1.1 200 OK');
  3. if (isset($_GET['cors'])) {
  4. header('Access-Control-Allow-Origin: *');
  5. header('Access-Control-Allow-Methods: GET, POST');
  6. header('Access-Control-Allow-Headers: Content-Encoding, Content-Type');
  7. }
  8. header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0, s-maxage=0');
  9. header('Cache-Control: post-check=0, pre-check=0', false);
  10. header('Pragma: no-cache');
  11. header('Connection: keep-alive');