<head> <meta http-equiv="refresh" content="0;URL=http://bym.guru" /> </head>
function Redirect($url, $permanent = false) { if (headers_sent() === false) { header('Location: ' . $url, true, ($permanent === true) ? 301 : 302); } exit(); }
Redirect('/page/user.php', false);