4 lines
94 B
PHP
4 lines
94 B
PHP
<?php
|
|
$target = $_GET['dest'] ?? $_GET['url'] ?? '/';
|
|
header("Location: $target", true, 302);
|