meta方式

特点:会先加载原有页面,加载完成后才跳转到目标页面。

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

javascript

特点:会直接跳转目标页面,不会先加载原页面,而是直接加载目标页面。

<script>window.location.href='https://www.cnblogs.com/guojbing';</script>