码迷,mamicode.com
首页 > 其他好文 > 详细

Vue路由History模式打包后页面空白,刷新404

时间:2019-12-31 23:47:04      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:config   his   根目录   try   class   mod   location   模式   hello   

 
 

项目的入口文件index.html直接在服务器访问地址的根目录下,即项目独占一个端口

vue中配置保持不变
nginx中配置如下:
server {
        listen      8899;
        server_name localhost;
        location / {
	       try_files $uri $uri/ /index.html;
        }
    }

  

 第二种就是
 
# 打包配置 config-index.js 修改路径:
 
assetsPublicPath: ‘./‘;

# 前端路由配置 router.js:

const router = new VueRouter({
    mode: ‘history‘,
    base: ‘/hello‘,
    routes
})
这里一定要一个加一个base;与项目子级目录名同步
 

nginx 配置:
server {
    listen 8088;
    server_name xxx.com;  # localhost修改为您证书绑定的域名。

    
    location / {
    }

    location /hello{
        try_files $uri $uri/ /hello/index.html;
    }
}

  

 以上只是针对项目放在子级目录的情况,刷新404的问题待解决

Vue路由History模式打包后页面空白,刷新404

标签:config   his   根目录   try   class   mod   location   模式   hello   

原文地址:https://www.cnblogs.com/lan-cheng/p/12127620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!