vue-router history模式下放在服务器出现白屏问题,nginx配置

location / {

    # 记得修改 root 所指的目录

    root /var/www/html;

    try_files $uri $uri/ @router;

    index  index.html index.htm;

}

location @router {

    rewrite ^.*$ /index.html last;

}

你可能感兴趣的:(vue-router history模式下放在服务器出现白屏问题,nginx配置)