302 status code indicates that the requested resource is temporarily available at a different URL.
The user is automatically redirected to the new URL, but search engines continue to index the old address.
200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: ad5.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="keywords" content=IOTOS,UIOTOS,物联中台/> <meta name="description" content=轻量化物联网数据中台/> <meta http-equiv="Content-Language" content="zh-CN"> <meta http-equiv="Cache-Control" content="max-age=2592000" /> <title>物联中台</title> <link href="/static/css/bootstrap.min.css" rel="stylesheet"> <link href="/static/font-awesome/css/font-awesome.css" rel="stylesheet"> <link href="/static/css/animate.css" rel="stylesheet"> <link href="/static/css/style.css" rel="stylesheet"> <style> .dkk-row { margin: 0px auto; width: 1000px; z-index: 1; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); margin-top: 6%; } .dkk-row-1 { -webkit-box-shadow: 0px 20px 80px 0px rgb(0 0 0 / 30%); box-shadow: 0px 20px 80px 0px rgb(0 0 0 / 30%); display: flex; flex-wrap: wrap; } .dkk-col-md { color: #fff; position: relative; padding: 60px 80px 80px; background: -webkit-gradient(linear, left bottom, left top, from(#3a485a), to(#607089)); background: linear-gradient( 353deg, #3a485a 0%, #607089 100%); } .dkk-header { display: flex; margin-bottom: 24px; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; } .dkk-login-body { background-image: url(/static/img/logo-backstage.png); background-repeat: no-repeat; background-size: 100%; height: 0px !important; background-color: white; } .dkk-left:after { background: url(/static/img/t2.png) no-repeat right bottom; content: ''; position: absolute; top: 0; left: 0; bottom: 0; right: 0; } </style> </head> <body class="gray-bg dkk-login-body"> <div class=" animated fadeInDown dkk-row"> <div class="row dkk-row-1"> <div class="col-md-6 dkk-col-md dkk-left"> <h2 class="font-bold"> <span class="white"> <img src="/media/img/微信图片_20250120165553.png" height="40" width="80" style="padding-bottom: 8px;padding-left: 10px;"> <span style="color:white;font-family:'黑体';font-size: 0.91em;"> IOTOS <span style="font-size: 80%;vertical-align: super">®</span>物联中台 </span> </span> </h2> <p style=" margin-bottom: 30px;margin-top: 30px;"> 专注于设备接入、数据采集和多系统融合。 </p> <p> 适用于各类智慧化项目(如工业、建筑等)中多品牌、多协议设备或子系统的快速集成和打通,低成本、低门槛、高效率,并且具有极强的开放性和扩展性。 </p> </div> <div class="col-md-6" style="background: white;"> <div class="ibox-content " style="height: 100%;padding: 60px 80px 80px;position: relative;"> <header class="dkk-header"> <h2 class="" style="margin: 0;"> <span style="font-weight: 400;">登录</span> </h2> <span class="pull-right"> 没有账号? <a href="/accounts/register/">点此注册</a> </span> </header> <form class="m-t"> <div class="form-group"> <input type="text" class="form-control" placeholder='用户名' name="username" required="required"> </div> <div class="form-group"> <input type="password" class="form-control" placeholder='密码' name="password" required="required" autocomplete="off"> </div> <button type="button" style="margin-bottom: 10px;background: #fe7300;color: #fff;" class="btn block full-width m-b login-btn">登录</button> <a class="btn btn-sm btn-white btn-block" href="/accounts/register/">注册</a> </form> <p class="m-t"> <small></small> </p> </div> </div> </div> <hr/> <div class="row"> <div class="col-md-12 text-center"> <small><a href="http://beian.miit.gov.cn" rel="nofollow" target="_blank" style="color: #676a6c;"> 粤ICP备18072544号 </a></small> <small>版权所有</small> </div> </div> </div> <!-- 国际化 --> <script type="text/javascript" src="/jsi18n/"></script> <!-- 最基本 --> <script src="/static/js/jquery.js"></script> <script src="/static/js/bootstrap.min.js"></script> <script src="/static/layer/layer.js"></script> <!-- toastr --> <script src="/static/js/plugins/toastr/toastr.min.js"></script> <script src="/static/js/iotos/utils.js"></script> <script src="/static/js/iotos/base64.js"></script> <script> $(".login-btn").click(function() { var key = new Base64(); that = $(this) username = $("input[name=username]").val(); password = $("input[name=password]").val(); username = LeftRotateString(username, 2) password = LeftRotateString(password, 2) password = key.encode(password) username = key.encode(username) that.text('登录中...').attr('disabled', 'disabled') if (username.length === 0 || password.length === 0) { that.text('登录').removeAttr('disabled') layer.alert('账号或密码不能为空', { title: '登录失败', icon: 5 }); } else { $.post(".", { username, password, csrfmiddlewaretoken: 'ymakuxgCfdyYlEhusDlLV3jkEZ9kJcZeyjUNFoQUb8NfJeVTpf4hxiyyKcrGoKuK' }, function(data) { that.text('登录').removeAttr('disabled') if (data.success === true) { window.sessionStorage.setItem('jwtToken', data.data.jwt_token) next = getQueryVariable("next") if (next) { window.location.href = getQueryVariable("next") } else { window.location.href = "/" } } else { layer.alert(data.msg, { title: '登录失败', icon: 5 }); } }, 'json') } }) // 字符串左偏移 function LeftRotateString(str, n) { var head = ''; var tail = ''; for (i = 0; i < str.length; i++) { if (i < n) { head += str[i] } else { tail += str[i] } } return tail + head } </script> </body> </html>