免费进入网站代码大全
免费进入网站代码大全
平时在网上总需要些和访问入口相关的代码,或者限制无效访问防崩,找靠谱的免费代码真费劲儿!整理了免费进入网站代码大全,涵盖基础入口、快捷登录、权限控制等场景,附上手教程和避
网站介绍
平时在网上总需要些和访问入口相关的代码,或者限制无效访问防崩,找靠谱的免费代码真费劲儿!整理了免费进入网站代码大全,涵盖基础入口、快捷登录、权限控制等场景,附上手教程和避坑点~
实用技巧:改账号密码直接改 JS 里的"admin"和"123456";想换颜色,把#83acf1换成自己要的色号就行。适合个人站、内网小系统用,不用搭后端数据库。
核心代码:
适合场景:个人博客、作品集网站,既保留登录功能,又不拦住访客,能提高访问量。
HTML 原生跳转(无需服务器):
Nginx 配置跳转(适合有服务器的情况):
实用技巧:content 里的 “3” 是延迟秒数,改 0 就是立即跳转。
基础入口代码:
1. 简易登录界面(HTML+CSS+JS,新手秒会)
想给网站加个简单登录页,不用找复杂模板,这段代码直接改改就能用,支持账号密码验证,样式还不丑。- 核心代码(可直接复制):
<!-- HTML结构 --><div class="login-box"><h2>网站登录</h2><div class="input-box"><input type="text" id="username" required><label>账号</label></div><div class="input-box"><input type="password" id="password" required><label>密码</label></div><button onclick="checkLogin()">登录</button></div><!-- CSS样式 --><style>.login-box { width: 350px; margin: 10% auto; padding: 40px; background: #fff; border-radius: 10px; box-shadow: 0 0 15px #eee; }.login-box h2 { text-align: center; margin-bottom: 30px; color: #333; }.input-box { position: relative; margin-bottom: 25px; }.input-box input { width: 100%; padding: 10px 0; border: none; border-bottom: 1px solid #ccc; outline: none; font-size: 16px; }.input-box label { position: absolute; top: 10px; left: 0; color: #999; transition: 0.3s; }.input-box input:focus ~ label { top: -15px; color: #83acf1; }button { width: 100%; padding: 12px; border: none; border-radius: 20px; background: #83acf1; color: white; font-size: 16px; cursor: pointer; }button:hover { background: #7799d4; }</style><!-- JS验证 --><script>function checkLogin() {const user = document.getElementById("username").value;const pwd = document.getElementById("password").value;// 这里改自己的账号密码if (user === "admin" && pwd === "123456") {alert("登录成功!");window.location.href = "index.html"; // 跳转到首页} else {alert("账号密码错误");}}</script>实用技巧:改账号密码直接改 JS 里的"admin"和"123456";想换颜色,把#83acf1换成自己要的色号就行。适合个人站、内网小系统用,不用搭后端数据库。
2. 访客免登入口(跳过登录直接访问)
有些网站不想强制登录,加个 “游客进入” 按钮超实用,代码几行就能搞定。核心代码:
<div style="text-align: center; margin-top: 20px;"><button onclick="window.location.href='home.html'">游客进入</button><p style="margin-top: 10px; color: #666;">登录可查看更多内容</p></div>适合场景:个人博客、作品集网站,既保留登录功能,又不拦住访客,能提高访问量。
3. 自动跳转代码(维护页 / 引导页专用)
网站维护时想自动跳转到通知页,或首页引导到内容页,两种方法都能实现:HTML 原生跳转(无需服务器):
<meta http-equiv="Refresh" content="3;url=maintain.html"><p>网站维护中,3秒后跳转到通知页...</p>Nginx 配置跳转(适合有服务器的情况):
server {listen 80;server_name 你的域名.com;return 302 https://你的域名.com/maintain.html; # 永久跳转用301}实用技巧:content 里的 “3” 是延迟秒数,改 0 就是立即跳转。