站内搜索:
首页 >> 前端 >> 内容
vue打包项目后刷新404的问题

时间:2017/7/14 16:54:52

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

  • 上一篇:HTML5中Audio对象volume属性的应用
  • 下一篇:用CSS3&jQuery创建appleTV海报视差效果
  • 返回顶部