vue的history模式nginx配置

当上下文不是根目录的时候,比如app。如下配置

路由配置

1
2
3
4
5
6
7
//路由对象
const router = createRouter({
// history: createWebHashHistory(),
history:createWebHistory('/app'),
routes //上面的路由数组

})

配置打包时候,上下文
vite.config.js

1
2
3
4
export default defineConfig({
base: 'app',
....
})

nginx配置

1
2
3
4
5
location /app {
alias /home/zou/www/app;
index index.html index.htm;
try_files $uri $uri/ /app/index.html;
}

最重要的是 try_files $uri $uri/ /app/index.html;http://www.example.com/post 为例,$uri会匹配到post,nginx发现dist下面没有post这个文件,也没有post这个文件夹,所以最后会返回index.html。这样,index.html被浏览器加载之后,前端路由就会工作,将用户需要的资源加载出来。


vue的history模式nginx配置
https://yifengtingyu.cn/2022/11/22/vue的history模式nginx配置/
作者
依风听雨
发布于
2022年11月22日
许可协议