<?php
// 清空输出缓冲区
/*ob_end_clean();*/
// 请将下面的URL替换为您想要重定向到的网页的URL
$new_url = 'http://www.lsy041.com/';
// 发送301响应头
header('HTTP/1.3 301 Moved Permanently');
// 重定向到新网页
header('Location: '.$new_url);
// 结束脚本
exit; ?>