<?php
// 要跳转的链接
$redirectUrl = '链接';

// 设置跳转
header('Location: ' . $redirectUrl);
exit();
?>