发布于2026-08-22 阅读(0)
扫一扫,手机访问
概念澄清与总体思路

场景一:将子域名降级为二级域名的操作
sudo systemctl reload nginx 或 sudo systemctl reload httpd。1.2.3.4 example.com www.example.com;curl -I http://example.com 与(如仍启用)curl -I https://example.com,检查返回 200/301/302 是否符合预期。场景二:把DNS解析降为公共DNS
nameserver 114.114.114.114nameserver 8.8.8.8nmcli connection show 为准):sudo nmcli connection modify "<连接名>" ipv4.dns "114.114.114.114 8.8.8.8"sudo nmcli connection up "<连接名>"DNS1=114.114.114.114DNS2=8.8.8.8sudo systemctl restart NetworkManager(或 sudo systemctl restart network)。cat /etc/resolv.conf 应看到新 nameserver;nslookup example.com 应走新 DNS 解析。验证与回滚
nslookup example.com(确认解析到期望 IP);curl -Iv http://example.com(或 https://example.com,视是否保留 TLS 而定),检查 HTTP 状态码与 跳转是否符合预期。上一篇:centos域名如何监控
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
正版软件
正版软件
正版软件
正版软件
正版软件
1
2
3
4
5
6
7
8
9