Blame view

redirect2.php 152 Bytes
42868d70   andryeyev   Создал GIT
1
2
3
4
5
6
  <?php
  if(isset($_GET['url_encode']) && strlen($_GET['url_encode'])>0){
   $url = base64_decode($_GET['url_encode']);
   header("location:$url"); exit;
  }
  ?>