Vue 路由模式 # 404问题

Vue路由模式:

vue 里面路由有两种显示模式是hash和history,默认是hash

hash —— 即地址栏 URL 中的 # 符号(此 hash 不是密码学里的散列运算)。比如这个 URL:http://www.abc.com/#/hello,hash 的值为 #/hello。它的特点在于:hash 虽然出现在 URL 中,但不会被包括在 HTTP 请求中,对后端完全没有影响,因此改变 hash 不会重新加载页面。
history —— 利用了 HTML5 History Interface 中新增的 pushState() 和 replaceState() 方法。(需要特定浏览器支持)这两个方法应用于浏览器的历史记录栈,在当前已有的 back、forward、go 的基础之上,它们提供了对历史记录进行修改的功能。只是当它们执行修改时,虽然改变了当前的 URL,但浏览器不会立即向后端发送请求。

设置History模式:

去掉#,按照如下进行设置
增加mode: ‘history’

const router = new VueRouter({
  mode: 'history',
  base: '/',
  routes: routers
})

404问题:

nginx配置

location / {
        root   /usr/local/nginx/html/live/dist;
        index index.html;
		if (!-e $request_filename) {
            rewrite ^/(.*) /index.html last;
            break;
        }

增加如下代码,解决回车或者刷新页面404的问题。

if (!-e $request_filename) {
    rewrite ^/(.*) /index.html last;
    break;
}

学习产出:

挺坑的
代码配置成功以后,访问相应地址#一直在。
1、新增一个页签进行打开
2、换一个浏览器打开
千万别在当前浏览器中一直尝试,无效。
可能代码未加载,或者缓存的原因吧。

上一篇:python安装包


下一篇:用nginx屏蔽爬虫的方法