Files

75 lines
1.7 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 🌐 文旅简历网站 - 局域网访问说明
## ✅ 当前服务器状态
服务器已成功部署在局域网上!
## 📍 访问地址
### 本机访问
- http://localhost:8888/
### 局域网内其他设备访问
- http://192.168.2.21:8888/
## 📱 手机/平板访问步骤
1. **确保在同一网络**
- 手机/平板必须连接到与电脑相同的WiFi网络
2. **打开浏览器**
- 在手机浏览器地址栏输入: `http://192.168.2.21:8888/`
3. **扫码访问(可选)**
- 可以使用二维码生成器生成上述链接的二维码
- 用手机扫码直接访问
## 🚀 启动/停止服务器
### 启动服务器
```bash
# 方法1使用启动脚本
./start-server.sh
# 方法2直接命令
python3 -m http.server 8888 --bind 0.0.0.0
```
### 停止服务器
`Ctrl + C` 即可停止
## 🔒 安全提示
- 这是一个简单的HTTP服务器仅适用于本地开发和演示
- 不要在生产环境使用
- 确保只在可信的局域网内使用
- 服务器运行时,局域网内的所有设备都可以访问
## 📄 网站页面列表
- **主页**: index.html
- **维护页**: maintenance.html
## ⚠️ 常见问题
### 无法访问?
1. 检查防火墙设置确保8888端口未被阻止
2. 确认IP地址是否正确可能会因网络变化而改变
3. 确保服务器正在运行
### 更换端口?
如需更换端口修改命令中的8888为其他端口号即可
### 查看当前IP
```bash
ifconfig | grep "inet " | grep -v 127.0.0.1
```
## 📊 浏览器兼容性
- ✅ Chrome/Edge (推荐)
- ✅ Safari
- ✅ Firefox
- ✅ 手机浏览器
---
最后更新: 2025-08-21