Files
web/src/docs/windows7-proxy.mdx

37 lines
1020 B
Plaintext
Raw 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.
# Windows7 电脑设置代理教程
## 🚀 30秒快速设置法
### 第一步:打开设置面板
1. 按 `Win` + `R` 打开运行框
2. 输入 `inetcpl.cpl`
3. 按回车
### 第二步:配置代理
1. 点击顶部 **"连接"** 标签
2. 点击右下角 **"局域网设置"** 按钮
3. **勾选** "为LAN使用代理服务器"
4. 填写代理信息:
- **地址**`proxy.example.com` 或 `192.168.1.100`
- **端口**`8080` 或 `3128`
5. 点击两次 **"确定"** 保存
### 第三步:测试验证
打开浏览器访问任意网站,检查是否正常
## 🌐 浏览器专用代理方案
### Chrome / Edge / Firefox 推荐方案
```javascript
// 最佳实践:使用代理管理扩展
// 1. 安装 SwitchyOmega 或 Proxy SwitchySharp
// 2. 配置代理服务器信息
// 3. 一键切换,不影响系统设置
// 配置示例
const proxyConfig = {
type: 'HTTP', // 或 HTTPS / SOCKS5
host: 'proxy.company.com',
port: 8080,
bypassList: ['localhost', '*.internal'] // 例外列表
};