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;
   }
}

おすすめ

転載: blog.csdn.net/peng2hui1314/article/details/106690852