<?php
// 设置要跳转的目标网址
$target_url = "https://ixyzero.com/blog/";

// 发送 HTTP 头信息，执行跳转
header("Location: $target_url");

// 确保后续代码不再执行
exit;
?>
