首页 > 系统相关 >vue 不同路由模式,部署时,nginx的不同配置

vue 不同路由模式,部署时,nginx的不同配置

时间:2023-01-31 16:00:23浏览次数:45  
标签:index vue htm 模式 nginx html font 路由

hash模式路由配置如下:

location / {
    root   font;
    index  index.html index.htm;
 }

history模式路由配置如下:

location / {
      root   font;
      index  index.html index.htm;
      try_files $uri $uri/ /index.html; # 如果不加此代码,刷新会报404错误,但首次进入主页不会不错
}

 

标签:index,vue,htm,模式,nginx,html,font,路由
From: https://www.cnblogs.com/Husir-boky/p/17079466.html

相关文章