H5+Vue3编写官网,并打包发布到同一个域名下

背景

因为html5有利于搜索引擎抓取和收录我们网站更多的内容,对SEO很友好,可以为网站带来更多的流量,并且多端适配,兼容性和性能都非常不错,所以使用h5来编写官网首页。

因为用户个人中心可以通过官网跳转,不需要被浏览器抓取,所以为了提高开发效率,减少开发周期,使用vue来开发。

打包

vue3打包

1、 设置publicPath,这个路径将是你整个vue项目的根路径

2、建议创建一个config.js文件,存放你所有需要访问的外部链接,这样,当外部链接改变的时候,就不需要重新再打包,而是直接更改dist中的config.js(vue会在dist中也生成同一个config.js)

文件放到和inde.html同目录

并在index.html中引入

config.js内容

在页面中使用链接 window.ipConfig.你在config.js中设置的变量

3、npm run build

h5页面跳转vue页面

直接使用 /person/xxx,就能跳转到vue相应的而页面

/person是vue页面的根目录,xxx是你想要跳转的页面路径

配置nginx

对于h5编写的页面,有多少个就写多少个location

复制代码
server{
        listen  80;
        server_name  www.xxx.com; #你的域名 没有域名的也可以不配置

        location / {    #官网首页  h5编写的页面
                root /opt/xxx/website/html;
                index index_1.html index_1.htm;
        }
        location /download{       #h5编写的页面
                alias /opt/xxx/website/html;
                index download.html download.htm;

        }
        location /doc{            #h5编写的页面
                alias /opt/xxx/website/html/doc;
        }
        location /person{      //配置的vue路径
                alias /opt/xxx/website/html/dist;  #dist文件地址
                index index.html index.htm;     #dist index文件
                try_files $uri $uri/ /dist/index.html;   #加上这句可以避免页面刷新空白

        }
        location /xxxx/{        #配置的后端地址代理
                proxy_pass http://172.xxx.xxx.xxx:9634/xxx/;  #后端地址
                proxy_set_header Host $http_host;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
        }
}

开启nginx

开启nginx就可以访问页面啦

相关推荐
张火火isgudi1 小时前
fedora43 安装 nvidia 驱动以及开启视频编解码硬件加速
linux·运维·视频编解码·nvidia
IT19952 小时前
Qt笔记-使用SSH2进行远程连接linux服务器并上传文件
linux·服务器·笔记
XXYBMOOO2 小时前
内核驱动开发与用户级驱动开发:深度对比与应用场景解析
linux·c++·驱动开发·嵌入式硬件·fpga开发·硬件工程
老华带你飞3 小时前
农产品销售管理|基于java + vue农产品销售管理系统(源码+数据库+文档)
java·开发语言·前端·数据库·vue.js·spring boot·后端
C_心欲无痕3 小时前
vue3 - 类与样式的绑定
javascript·vue.js·vue3
lengjingzju4 小时前
一网打尽Linux IPC(三):System V IPC
linux·服务器·c语言
JIngJaneIL4 小时前
基于springboot + vue房屋租赁管理系统(源码+数据库+文档)
java·开发语言·前端·数据库·vue.js·spring boot·后端
大聪明-PLUS4 小时前
如何编写你的第一个 Linux 内核模块
linux·嵌入式·arm·smarc
知识分享小能手4 小时前
Ubuntu入门学习教程,从入门到精通,Ubuntu 22.04文件压缩与解压缩知识点详解(12)
linux·学习·ubuntu
用户6135411460165 小时前
Krb5-libs-1.18.2-5.ky10.x86_64.rpm 安装失败怎么办?附详细步骤
linux