自学内容网 自学内容网

Nginx部署Vue项目添加访问后缀

有时候会根据需要,区分不同的vue项目,这样要加一个后缀,不加后缀,访问是http://localhost/,加一个后缀,app,访问路径就是http://localhost/app

一、vue工程配置:
1.vue.config.js publicPath 配置为 /app/
2.route配置base为 /app,model为history

将打包后vue工程文件放入 /usr/share/nginx/html/app 目录
二、nginx配置
server {
listen 80;
server_name ip地址或域名;
location /app {
alias /usr/share/nginx/html/app/;
try_files $uri $uri/ /app/index.html;
}

}

三、重启nginx
再访问时就要加上 app后缀了


原文地址:https://blog.csdn.net/m0_38129431/article/details/145276486

免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!