有网页跳转的需求,在不同的情况下,需要不同的网页跳转方式,这里指自动跳转的方式,不包括点击等操作后的跳转。
1,html跳转方式
<html> <head> <meta http-equiv="refresh" content="1;url=http://www.homeh.cc"> </head> </html>
解析:content前面的数字代表多长时间后跳转,后边接跳转的链接。说是跳转实际上是刷新。
2,js跳转方式
window.location.href="http://www.homeh.cc" window.open("http://www.homeh.cc") self.location.href="www.homeh.cc"
3,php跳转方式
<?php header("Location: http://www.homeh.cc",TRUE,301); ?>
解析:
header 中的Location后边接的是跳转链接,301是指跳转时的状态码,这个跳转比较专业,符合SEO的要求。