网站实现重定向的多种方法
- A
一、PHP
1.header()函数
header('location:http://www.asphp.net');2.输出meta标签
echo '<meta http-equiv="refresh" content="1;url=http://www.asphp.net">';3.输出script标签
echo '<script>window.location.href="http://www.asphp.net"</script>';二、JavaScript
1.window.location.href
window.location.href="http://www.asphp.net";2.window.history.back
window.history.back(-1);//返回上一页3.window.navigate
window.navigate("http://www.asphp.net");4.self.location
self.location='http://www.asphp.net';5.top.location
top.location='http://www.asphp.net';三、HTML
1.head头内的meta标签
<meta http-equiv="refresh" content="1; url=http://www.asphp.net/">
傲世》原创,转载请保留文章出处。
本文链接:https://www.recho.cn/103.html
如您对本文章内容有所疑问、反馈或补充,欢迎通过邮箱:[email protected] 联系我们!
版权声明:若无特殊注明,本文为《正文到此结束