欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php 智能404跳转代码,适合换域名没改变目录的网站

程序员文章站 2023-10-31 21:56:52
复制代码 代码如下:
复制代码 代码如下:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>404</title>
<meta http-equiv='refresh' content='5; url=//www.jb51.net<?=$_server[request_uri]?>'>
</head>
<body>
本站起用新域名访问
你目前访问的页面是http://www.jb51.cn<?=$_server['request_uri']?>
系统为你重新定向到新站相应的页面//www.jb51.net<?=$_server['request_uri']?>
或等待5秒后,系统自动跳转到新站相应的页面
</body>
</html>