HTML 页面重定向(自动跳转) HTML 实现123456<head> <!-- 以下方式只是刷新不跳转到其他页面 --> <meta http-equiv="refresh" content="3"> <!-- 以下方式定时转到其他页面 --> <meta http-equiv="refresh" content="3;url=https://www.baidu.com"></head> JavaScript 实现12345<head> <script language="javascript" type="text/javascript"> window.location.href = "https://www.baidu.com"; </script></head> HTML HTML HTML 获得当前页面路径 上一篇 Nginx 301 重定向 下一篇