解决 Nginx 部署 Vue 项目路由出现 404 的问题

代码如下:

server {
    listen      80;
    server_name example.com;

    location / {
       root /home/example/dist;
       try_files $uri $uri/ @router; # 配置使用路由
       index  index.html index.htm;
    }
    
   # 路由配置信息
   location @router {
     rewrite ^.*$ /index.html last;
   }

}

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注