是否可以设置一个基本的HTML页面以在加载时重定向到另一个页面?


当前回答

将以下代码放入<head>部分:

<meta http-equiv="refresh" content="0; url=http://address/">

其他回答

将以下代码放入<head>部分:

<meta http-equiv="refresh" content="0; url=http://address/">

只是为了更好地衡量:

<?php
header("Location: http://example.com", true, 302);
exit;
?>

确保脚本上方没有echo,否则将忽略它。http://php.net/manual/en/function.header.php

最好设置301重定向。请参阅谷歌网站管理员工具文章301重定向。

一旦页面加载,init函数就会启动并重定向页面:

<!DOCTYPE html>
<html>
    <head>
        <title>Example</title>
        <script>
            function init()
            {
               window.location.href = "www.wherever.com";
            }
        </script>
    </head>

    <body onload="init()">
    </body>
</html>

这不需要任何JavaScript代码。将其写入HTML页面的<head>部分:

<meta http-equiv="refresh" content="0; url=example.com" />

页面在0秒加载后,即可转到页面。