惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
The Register - Security
The Register - Security
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
MyScale Blog
MyScale Blog
云风的 BLOG
云风的 BLOG
博客园_首页
U
Unit 42
T
Tailwind CSS Blog
G
GRAHAM CLULEY
F
Full Disclosure
V
Vulnerabilities – Threatpost
T
Tenable Blog
月光博客
月光博客
P
Privacy & Cybersecurity Law Blog
P
Privacy International News Feed
K
Kaspersky official blog
Scott Helme
Scott Helme
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
N
News and Events Feed by Topic
T
The Exploit Database - CXSecurity.com
N
News and Events Feed by Topic
有赞技术团队
有赞技术团队
Recent Commits to openclaw:main
Recent Commits to openclaw:main
L
LINUX DO - 最新话题
Recorded Future
Recorded Future
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Help Net Security
Help Net Security
The GitHub Blog
The GitHub Blog
Cisco Talos Blog
Cisco Talos Blog
SecWiki News
SecWiki News
P
Proofpoint News Feed
Security Latest
Security Latest
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
罗磊的独立博客
S
Security Affairs
M
MIT News - Artificial intelligence
L
LINUX DO - 热门话题
美团技术团队
Simon Willison's Weblog
Simon Willison's Weblog
T
Threat Research - Cisco Blogs
Stack Overflow Blog
Stack Overflow Blog
Forbes - Security
Forbes - Security
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
V
Visual Studio Blog

博客园 - 季枫

armbian安装python3.12 英语学习:byoungd / English-level-up-tips Public 为casaos系统安装openclaw,解决访问docker仓库的问题 玩客云 casaOS的armbian系统启动后无法联网(没有ip地址解决办法) 通达信K线解析 ubuntu xfce4 terminal 中文乱码 windows 替代fiddler wsl安装ubuntu 20子系统和桌面 玩客云 armbian+CasaOS设置国内的源地址 资金多空线 ffmpeg 抖音下载的音频和视频合并: ps里如何把字弄成复印效果 win11 程序不能启动用--no-sandbox windows 访问armbian SMBA被拒绝 玩客云casaOS实现家里华为路由器访问,用于控制IPTV设置,远程管理小孩看电视 解决windows子系统wsl ubuntu的随机mac问题 六西格玛设计 | 如何运用质量功能展开(QFD)进行设计 windows系统安装ubuntu子系统,解决Easyconnect windows版本对监控软件的限制 黑神话boss手残打发 openwrt 作为二级路由器,实现IPV6中继(中国移动宽带发布私有nas、网站等服务) 解决armbain系统挂载移动硬盘NTFS只能读,不能写问题 移动宽带公网IPV6地址检查 nas 移动宽带使用IPV6访问(打通ipv6) Python中的tushare入门
解决nginx反向代理 Location重定向到内网地址问题
季枫 · 2024-10-29 · via 博客园 - 季枫

Posted on 2024-10-29 19:59  季枫  阅读(248)  评论(0)    收藏  举报

问题:

$ curl -I http://www.bbs.com/
HTTP/1.1 302
Server: nginx/1.16.0
Date: Tue, 26 Nov 2019 08:00:35 GMT
Location: http://192.168.1.2/index.html
Connection: keep-alive
Cache-Control: no-cache

解决办法:

server {
listen80;
server_name www.bbs.com;


location / {
proxy_pass http://192.168.1.2;
proxy_redirect http://192.168.1.2 http://www.bbs.com;
}

刷新页面返回顶部