多个history模式vue项目的nginx配置

样例

域名为http://csdnname
现在要求第一个项目在http://csdnname/下,第二个项目在http://csdnname/manage/

一、第一个项目 

1. 修改路由配置

const createRouter = () => new Router({
  mode: 'history',
  routes
})

2. 修改publicPath(vue.config.js)

module.exports = {
  // 去掉也可以
  publicPath: '/'
}

二、第二个项目

1. 修改路由配置 

const createRouter = () => new Router({
  mode: 'history',
  // 注意要和要求的子域名一致
  base: '/manage',
  routes
})

2. 修改publicPath(vue.config.js)

module.exports = {
  // 注意要和要求的子域名一致
  publicPath: '/manage/'
}

三、nginx配置 

server {
  listen 80;
  listen [::]:80;

  server_name localhost;

  location / {
    # 注意是root不是alias
    root /html/videoconferencing;
    # 注意这里要加@router,@router的定义在下面
    try_files $uri $uri/ @router;
    index index.html index.htm;
  }
  # 注意要和项目中配置的base一样
  location /manage {
    # 注意是alias不是root
    #alias /html/conferencingmanagement;
    #root模式
    root html;
    # 注意最后是项目中配置的base+index.html不是@router
    try_files $uri $uri/ /manage/index.html;
    index index.html index.htm;
  }
  # 不要漏掉这个
  location @router {
    rewrite ^.*$ /index.html last;
  }
}

你可能感兴趣的:(nginx,vue.js)