解决vue打包项目后刷新404的问题【点击查看详情】
解决vue打包项目后刷新404的问题:vue打包项目后刷新404的问题Nginx配置 server { listen 80; server_name localhost; index index.html; root /root/dist; location / { root /root/dist; try_files $uri $uri/ /index.html =404; }
相关视频/文章