码迷,mamicode.com
首页 > 其他好文 > 详细

页面跳转的几种方法

时间:2018-01-08 13:29:36      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:post   定向   ade   方法   win   跳转   permanent   http   color   

PHP

 

<?php

//302重定向
$url = "http://www.cnblogs.com/mengor";   
header( "Location: $url" ); 

//301重定向
$url = "http://www.cnblogs.com/mengor";   
header( "HTTP/1.1 301 Moved Permanently" );   
header( "Location: $url" ); 

 

meta

<meta http-equiv="refresh" content="5;url=http://www.cnblogs.com/mengor"> 

js

<script> 
    window.location.href="http://www.cnblogs.com/mengor";
</script> 

 

页面跳转的几种方法

标签:post   定向   ade   方法   win   跳转   permanent   http   color   

原文地址:https://www.cnblogs.com/mengor/p/8242083.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!