|
楼主 |
发表于 2018-4-20 15:48:56
|
显示全部楼层
发布失败,错误信息:
网页源代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>信息提示</title>
<link href="adminstyle/2/adminstyle.css" rel="stylesheet" type="text/css">
<SCRIPT language=javascript>
var secs=2;//3秒
for(i=1;i<=secs;i++)
{ window.setTimeout("update(" + i + ")", i * 1000);}
function update(num)
{
if(num == secs)
{ self.location.href='index.php';; }
else
{ }
}
</SCRIPT>
</head>
<body>
<br>
<br>
<br>
<br>
<br>
<br>
<table width="500" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td height="25"><div align="center">信息提示</div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="80">
<div align="center">
<br>
<b>您还未登录</b>
<br>
<br><a href="index.php">如果您的浏览器没有自动跳转,请点击这里</a>
<br><br>
</div></td>
</tr>
</table>
</body>
</html>
返回的Header:
HTTP/1.1 200 OK
Server:21icws
Date:Fri, 20 Apr 2018 07:47:19 GMT
Content-Type:text/html; charset=gb2312
Transfer-Encoding:chunked
Connection:keep-alive
Vary:Accept-Encoding
Content-Encoding:gzip
Content-Length:1002
这是登录信息错误的意思吗? |
|