vue部署后,访问路径问题

问题:
访问https://zkaim.com/ocms/正常访问https://zkaim.com/ocms就报404
已知vue2.5.9:
nginx配置如下
location/ocms/{
root/home;
#indexindex.htmlindex.htm;
}
vue路由配置如下
mode:'history',
base:'/ocms/'
...
以及config配置中的assetsPublicPath跟base相同
杨魅力
浏览 392回答 2
2回答

米琪卡哇伊

因为你的nginx配置是location/ocms/这样是无法匹配到/ocms请求的建议配置改为location/ocms{root/home;try_files$uri$uri/;#indexindex.htmlindex.htm;}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript