Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 nginx 上设置重定向?我需要实现的是将旧域重定向到作为服务器名称的新域。尝试使用重写我遇到了问题,因为我需要将旧域设置为服务器名称,并将新域设置为重写。
server { server_name old.example.com; return 301 http://new.example.org/; } server { server_name new.example.org; location / { ... } }
尝试在旧主机名的服务器块配置中使用“proxy_pass example.newdomain.com:8080”指令。