vue配置history模式

前言

引用官方的解释:

HTML5 History 模式

vue-router 默认 hash 模式 —— 使用 URL 的 hash 来模拟一个完整的 URL,于是当 URL 改变时,页面不会重新加载。

默认的hash模式的url像这样:http://yoursite.com/index.html#/user/id

改为history模式后的url: http://yoursite.com/user/id

去掉#号的url好看了很多,那就让我们开始吧

前端配置

vue 路由配置修改

const router = new VueRouter({
  mode: 'history',
  routes: [...]
})

后端配置

Apache 配置

  1. 确保apache的rewrite模块开启

  2. 在项目的更目录,和index.html同级,创建一个文件.htaccess

    
      RewriteEngine On
      RewriteBase /
      RewriteRule ^index\.html$ - [L]
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /index.html [L]
    
    
  3. 重启apache2:

    service apache2 restart
    

Nginx 配置:

  1. 修改配置文件 xxx.server

    location / {
     ......
     try_files $uri $uri/ /index.html;
     root /home/sourcecode/dist;
     ......
    }
    

    其中 root路径 为项目打包好的文件夹路径

链接

github:https://github.com/pandaomeng/blog

博客:https://pandaomeng.com

你可能感兴趣的:(vue配置history模式)