这次给大家带来vue怎样剔除路径#号,vue剔除路径#号的注意事项有哪些,下面就是实战案例,一起来看一下。
众所周知,vue-router有两种模式,hash模式和history模式。
带#的则是hash模式。
将router中的mode设置为history就可以了
接下来有个问题,界面一刷新,就变404了!!!!
网上搜了下,需要对后端环境进行一个配置。
这里只列举nginx的配置,其他的配置点击这里去官网看
先配置config/index.js
修改assetspublicpath为根目录
module.exports = {
build: {
env: require('./prod.env'),
index: path.resolve(dirname, '../dist/index.html'),
assetsroot: path.resolve(dirname, '../dist'),
assetssubdirectory: 'static',
assetspublicpath: '/', // hash 模式会默认的在此处 添加为 assetspublicpath: './'
productionsourcemap: true,
...
}
}
然后配置nignx
server {
listen 0.0.0.0:12345;
location / {
root /home/我的应用跟目录;
try_files $uri $uri/ /index.html =404; // 这个是重点
}
error_page 404 /index.html
}
url再也没有#了,多完美
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
vue中ajax请求与axios包完美处理
element traversal实现元素遍历详解
以上就是vue怎样剔除路径#号的详细内容。