Subversion Repositories personal-webbase

Rev

Rev 1 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. if (!isset($_GET['target'])) {
  4.         die('Fehlendes Argument: target');
  5. }
  6.  
  7. ?><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  8.  
  9. <html>
  10.  
  11. <head>
  12.         <title>Weiterleitung</title>
  13.         <!-- <meta http-equiv="refresh" content="0; URL=<?php echo $_GET['target'];  ?>"> -->
  14.         <meta name="robots" content="noindex">
  15. </head>
  16.  
  17. <body>
  18.         <h1>Bitte warten...</h1>
  19.  
  20.         <p>Sie werden weitergeleitet zu: <a href="<?php echo $_GET['target'];  ?>"><?php echo $_GET['target'];  ?></a></p>
  21.  
  22.         <script language ="JavaScript">
  23.         <!--
  24.                 window.location.replace("<?php echo $_GET['target']; ?>");
  25.         // -->
  26.         </script>
  27. </body>
  28.  
  29. </html>
  30.