通过JS跳转

<script type="text/javascript">
    document.location.href = "http://www.1pxeye.com";
</script>

HTML页面跳转

<meta http-equiv="refresh" content="10; url=http://www.1pxeye.com">

动态页面跳转


方法一: PHP 跳转

<?php
header("location: http://www.1pxeye.com");
?>

方法二: ASP 跳转

<%
response.redirect "http://www.1pxeye.com"
%>