浅谈在不使用ssr的情况下解决Vue单页面SEO问题(

只是用php预处理了meta标签

但是依然没有内容填充,所以对于内容抓取依然有些乏力,只是解决了从无到有的问题

那接下来可以更进一步的预填充内容了

预填充内容

这里依然使用php来实现

首先在php中拉取需要填充的数据,列表或是具体内容

修改拉取数据部分

$urlExp = explode('https://www.jb51.net/',$_SERVER['REQUEST_URI']); if(count($urlExp)>2 && $urlExp[1] == 'article'){ //文章页拉取内容 $ret = @json_decode(http_Req('http://127.0.0.1/api/Blog/getsinglelist',['tuid'=>$urlExp[2]],'POST'),true); if($ret){ $valKeywords = $ret['info'][0]['tt'].','.$valKeywords; $valDescription = $ret['info'][0]['txt'].' - '.$valTitle.','.$valDescription; $valTitle = $ret['info'][0]['tt'].' - '.$valTitle; $info = $ret['info'][0]['info']; $textData = @file_get_contents("你的文章路径") ?? $valDescription; }else{ $textData='none'; } } if(!$textData){ //列表页拉取列表 $ret = @json_decode(http_Req('http://127.0.0.1/api/Blog/getlist',['page'=>1,'type'=>0],'POST'),true); if($ret){ $textData = ''; foreach ($ret['info'] as $key=>$val) { $textData.='标题:'.$val['tt'].'.'; $textData.='描述:'.$val['txt'].'.'; $textData.='创建时间:'.$val['ctime'].'.'; $textData.='浏览次数:'.$val['fl'].'.'; } } }

然后在html部分输出相关内容

在body下放一个div,并且隐藏掉他

<div> <?php echo $textData; ?> </div>

这样爬虫就可以抓取到我们的内容并且不影响前端渲染

优化vue构建

之前的构建是在构建完成后修改html为php,有点蠢

这里改下webpack的配置就好了

修改 build/webpack.prod.conf

new HtmlWebpackPlugin({ filename: config.build.index, //这里改为index.php template: 'index.php', inject: true, minify: { removeComments: true, collapseWhitespace: true, removeAttributeQuotes: true // more options: // https://github.com/kangax/html-minifier#options-quick-reference }, // necessary to consistently work with multiple chunks via CommonsChunkPlugin chunksSortMode: 'dependency' }),

修改 config/index.js

build: { // Template for index.html // 这里改为index.php index: path.resolve(__dirname, '../dist/index.php'), // Paths assetsRoot: path.resolve(__dirname, '../dist'), assetsSubDirectory: 'static', assetsPublicPath: 'http://cdn.linkvall.cn/', productionSourceMap: true, devtool: '#source-map', productionGzip: false, productionGzipExtensions: ['js', 'css'], bundleAnalyzerReport: true }

这样构建时候的入口文件就变成index.php,构建完成的页面入口也为index.php

最终效果

等爬虫更新后就搜到我们的文章了

浅谈在不使用ssr的情况下解决Vue单页面SEO问题(

写在最后

目前还是用php来实现主要是实现起来比较简单,对于像我一样后端是php的比较友好

如果再使用node去监听个端口的话需要额外开销和额外的精力去维护

如果后端是纯node的当然用node或者直接配置个SSR更好

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/14eac48cb1fa1d03d94686576f0dd7c3.html