为什么此元内容重定向不起作用

时间:2017-08-14 08:44:41

标签: html asp.net redirect iis

IIS .Net项目的默认文档是Default.htm文件。以下代码反映了Default.htm文件的内容。

运行时,它不会重定向到Project1文件夹,而是在当前目录中查找Login.aspx(例如:www.website.com/Login.aspx,它应该是www.website.com/ PROJECT1 /为Login.aspx)。我认为我的网址标签不正确,但它没有缺陷。

<html>
<head>
    <meta HTTP-EQUIV="REFRESH" content="0; url=Project1/Login.aspx">
    <title>Welcome</title>
</head>
<body>
    <p>Loading ...</p>
    <p>Please click <a href="Project1/Login.aspx">here</a> to login</p>
</body>
</html>

为什么它不会在Project1文件夹中查找Login.aspx?

1 个答案:

答案 0 :(得分:0)

您需要更改为此(在网址开头添加斜杠):

<meta HTTP-EQUIV="REFRESH" content="0; url=/Project1/Login.aspx">