nil 发表于 2024-10-28 21:31:35

Nginx http redirect to https 301

server {
    listen 80 default_server;

    server_name _;

    return 301 https://$host$request_uri;
}

页: [1]
查看完整版本: Nginx http redirect to https 301