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