Sep
19
1、PHP一般是用 header函数
重定向到 http://www.jingyihome.com
或者
2、asp用redirect方法
转向到 http://你的站点/news
<%
response.redirect "http://"&Request.ServerVariables("SERVER_NAME")&"/news"
%>
3、javascript/dhtml
用meta标签完成
重定向到 http://www.jingyihome.com
<?php
header("Location:http://www.jingyihome.com");
?>
header("Location:http://www.jingyihome.com");
?>
或者
<? header("location:note.php"); ?>
2、asp用redirect方法
转向到 http://你的站点/news
<%
response.redirect "http://"&Request.ServerVariables("SERVER_NAME")&"/news"
%>
3、javascript/dhtml
用meta标签完成
<meta http-equiv="refresh" content="1;url=http://www.jingyihome.com">