## 1.路由代码中添加mode:'history'
~~~
const router = new Router({
mode: 'history', //去掉url中的#
~~~
## 2.在nginx的配置文件.conf中对应的路径下添加:try\_files $uri $uri/ /index.html;
~~~
server {
listen 80;
server_name my.vue.com;
charset utf-8;
location / {
root /Users/libo/Documents/workspace/Vue-me/my-project/dist;
index index.html index.htm index.php;
try_files $uri $uri/ /index.html;
}
location ^~ /ssm_project/ {
proxy_pass http://127.0.0.1:8081;
proxy_cookie_path /127.0.0.1:8081/ /;
proxy_pass_header Set-Cookie;
proxy_set_header Host 127.0.0.1:8081;
}
}
~~~
## 3.如果项目不在根目录下。例如,路径为 http://www.hahaha.com/static/index,还需要配置
3.1 config/index.js
```
module.exports \= {
dev: {
// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '/static/', //为了线上配置的目录,如果线上没有目录前缀则替换为 /
proxyTable: {
'/api': {
target: 'https://xt.yuketang.cn',
changeOrigin: true
}
},
```
3.2 router/index.js
```
var router \= new Router({
mode: 'history', //可以去掉url中的#。但是打包后需要后台配置,否则会404
base: '/static/',//为了线上配置的目录,如果线上没有目录前缀则可以删掉
routes: routerMap,
})
```
- CSS
- 长度单位
- 问题们
- 背景渐变
- 禁止用户选中
- 给富文本重置样式
- 移动端常见小问题
- bfc
- flex
- 父元素没有包裹子元素的margin
- VUE
- 原理
- 生命周期
- vue-router原理
- 动态修改路由参数
- 在新窗口打开页面
- 连跳两个页面
- 跳转页面自动回到顶部
- vue+webpack项目,停留一段时间报错
- vue 路由去掉#
- webpack编译目录设置
- config配置
- HTTP
- HTTP状态码
- HTTP1.0,HTTP1.1,HTTP2.0
- axios和ajax的区别
- 模块化
- git
- 比较
- 查看远程仓库地址
- git flow
- 比较分支的不同并保存压缩文件
- Tag
- 回退
- node版本管理
- npm
- 确定用户是否在当前页面
- 前端下载文件
- 只能在微信中访问
- 下载图片
- webpack修改路径为相对路径
- 打开新页面-被浏览器拦截
- textarea高度随内容变化
- Debian/Ubuntu 安装shadowsock
- 垂直居中
- video
- 去掉ios原始播放大按钮
- 前端直播
- ios系列
- js弹出错误代码
- nginx在MAC上的安装、启动、重启和关闭
- 解析latex格式的数学公式
- Mac 新建unix可执行文件
- 正则-格式化a链接
- 原型
- unicode解析
- vue+webpack打包优化
- 各种JS题
- ES6
- seo
- React
- 兼容性
- canvas
- zsh