nginx 301 重定向配置

需求:把 yepk.cn 301重定向到www.yepk.cn,以及把http重定向到https

做法:找到conf配置文件,顶部新增

server {
        listen       80;
        server_name  www.yepk.cn yepk.cn;

        return 301 https://www.yepk.cn$request_uri;
}

重启nginx

./nginx -s reload
# linux   nginx  

评论

企鹅群:39438021

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×