`
jiaoronggui
  • 浏览: 1302348 次
  • 性别: Icon_minigender_1
  • 来自: 合肥
博客专栏
B7c2eb31-a8ea-3973-a517-d00141f39b89
项目管理软件-redmin...
浏览量:115176
4a63e153-250f-30f6-a051-97cfc67cb3d3
IT职业规划
浏览量:197616
社区版块
存档分类
最新评论

vue history模式下nginx部署

阅读更多

1、vue打包中,打包模式按照history模式,设置输出目录

 



 

2、nginx修改配置文件

	location /h5/ { #配置H5访问
		root /www/;
	    try_files $uri $uri/ @router;
		index index.html index.htm;
	}
	location @router {
		rewrite ^.*$ /h5/index.html last;
	}
 

 

  • 大小: 19.1 KB
1
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics