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


当前回答

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

其他回答

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

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

我还将添加一个规范链接来帮助您的SEO人员:

<link rel="canonical" href="http://www.example.com/product.php?item=swedish-fish"/>

Razor引擎延迟5秒:

<meta http-equiv="Refresh"
         content="5; url=@Url.Action("Search", "Home", new { id = @Model.UniqueKey }))">

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

我使用一个脚本将用户从index.html重定向到登录页面的相对url

<html>
  <head>
    <title>index.html</title>
  </head>
  <body onload="document.getElementById('lnkhome').click();">
    <a href="/Pages/Login.aspx" id="lnkhome">Go to Login Page</a>
  </body>
</html>