jump.php 198 B

1234567
  1. <?php
  2. /* This is to deal with pixiv's /jump.php for external links. */
  3. if (empty($_SERVER['QUERY_STRING'])) {
  4. die('Illegal request');
  5. }
  6. header('Location: ' . urldecode($_SERVER['QUERY_STRING']));