Contents
nginx
1server {
2 listen XXXX; //端口号
3 server_name XXX.XXX.XXX.XXX; //本机IP地址
4
5 location /{
6 root E:/website/dist/; //打包后的项目路径
7 index index.html index.htm; //默认访问的页面
8 try_files $uri $uri/ /index.html; //解决刷新页面变成404问题的代码
9 }
10}