网站无法加载,但刷新负载?

时间:2013-08-12 10:24:51

标签: html iis redirect

所以我的域名指向一个重定向文件,该文件又加载了网站的第一页。

它过去曾奏效。主机最近切换了服务器,并表示它将是无缝的。现在,当您导航到www.AiySlumlords.com时,它会点击重定向,然后无法加载第二页。但是,如果你在失败后点击刷新然后加载?

我不知道为什么这不起作用。这是重定向文件

<html>
<head>
<title>A web page that points a browser to a different page after 2 seconds</title>
<meta http-equiv="refresh" content="0; URL=./Home/f1.html">
<meta name="keywords" content="automatic redirection">
</head>
<body>
<p>If your browser doesn't automatically go there within a few seconds, you may want to go to <a href="./Home/f1.html">the destination</a> manually.</p>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

由于您的服务器由IIS和ASP.NET提供支持,因此最好使用ASP.NET来重定向客户端,例如:创建一个index.aspx页面,其中包含以下内容:

<%
  Response.Redirect("~/Home/f1.html", false);
  Response.StatusCode = (int)System.Net.HttpStatusCode.MovedPermanently;
  Response.End();
%>