yangzailu

导航

nginx 强制跳转域名

1、匹配到 

hewashanzhao.com 强制跳转到  https://hewa.cn
  server {
        listen      8110;
        server_name hewashanzhao.com;
        location / {
             rewrite ^/(.*)$ https://hewa.cn/$1 permanent;
        }
    }

 

posted on 2023-11-29 15:42  飞离地平线  阅读(78)  评论(0编辑  收藏  举报