nginx配置Router
修改vue生成参数1. index.html文件修改添加 <meta base="/子目录名/">2. config/index.js文件修改修改 assetsPublicPath: '/子目录名/'3.src/router/index.js文件修改添加 base: '/子目录名/'Nginx配置location /...
·
修改vue生成参数
1. index.html文件修改
添加 <meta base="/子目录名/">
2. config/index.js文件修改
修改 assetsPublicPath: '/子目录名/'
3.src/router/index.js文件修改
添加 base: '/子目录名/'
Nginx配置
location /子目录名 {
try_files $uri $uri/ @router;
}
location @router {
rewrite ^.*$ /子目录名/index.html last;
}
更多推荐
已为社区贡献1条内容
所有评论(0)