nginx将请求全部指向到html下的index.html页面

转: https://blog.csdn.net/z8853797/article/details/53898031

server {
        listen       80;
        server_name  localhost;

        location / {
            try_files '' /index.html;
        }

        location =/index.html {
            index  index.html index.htm;
        }
}

猜你喜欢

转载自blog.csdn.net/zyf_balance/article/details/83377327