小编典典

Vue.js - 如何删除 hashbang #! 从网址?

all

如何#!从 url 中删除 hashbang?

我在 vue 路由器文档( http://vuejs.github.io/vue-
router/en/options.html
)中找到了禁用 hashbang 的选项,但是这个选项被删除#!了,只是把#

有什么办法可以让网址干净吗?

例子:

不是:#!/home

但:/home

谢谢!


阅读 96

收藏
2022-04-07

共1个答案

小编典典

您实际上只想设置mode'history'.

const router = new VueRouter({
  mode: 'history'
})

不过,请确保您的服务器已配置为处理这些链接。 https://router.vuejs.org/guide/essentials/history-
mode.html

2022-04-07