官方服务微信:dat818 购买与出租对接

博客网站搭建后如何进行推广并被搜索引擎收录?

7898

主题

2

回帖

2万

积分

管理员

积分
23850
发表于 2024-11-15 12:22:30 | 显示全部楼层 |阅读模式
    博客网站建立,内容逐渐丰富。接下来就是网站的推广。我希望我的文章能够被别人看到,也希望能为迷茫的路人提供一个思路。

    博客推广

    一般推广方法:在别人的博客评论或者一些回答区留下你的爪子(博客地址),但是太麻烦了,只能一一复制。

    目前,搜索引擎推广是在互联网上寻找资源的重要手段。如何让您的文章包含在常见搜索引擎中。

    的博客网站采用hexo+page搭建,拒绝百度爬虫,因此其上托管的博客无法被搜索引擎收录,需要手动提交。同时,个人博客不依赖于知名博客平台,如CSDN、知乎、简书、博客园等,因此搜索权重不高(对于新站来说基本不会),因此为了更多人看到我们的文章,我们需要SEO优化。

    判断是否包含

    如何判断你的博客是否被百度收录,很简单。搜索站点:域名,如site:

    如果搜索到结果,则说明已被百度收录。显然,搜索小牛队的网站没有任何结果。

    搜索引擎优化

    SEO():搜索引擎优化

    为了提高浏览器收录概率,一般可以从以下两个方面入手:

    网站优化和主动推送到搜索引擎

    我们以百度主动推送的讨论为例(无论它多么hack,它都有国内最大的市场),其他搜索引擎也类似。百度提供两种方式:自动提交和手动提交。自动提交分为主动推送、自动推送三种方式:

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
<span class="line">4</span>
<span class="line">5</span>
<span class="line">6</span>
<span class="line">7</span>
<span class="line">8</span>
<span class="line">9</span>
<span class="line">10</span>
<span class="line">11</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">手动提交:一次性提交链接给百度,可以使用此种方式。(,提交量太低,而且太麻烦)</span>
<span class="line"></span>
<span class="line">自动提交(顾名思义):</span>
<span class="line"></span>
<span class="line">(1) 主动推送(实时):最为快速的提交方式,推荐您将站点当天新产出链接立即通过此方式推送给百度,以保证新链接可以及时被百度收录。</span>
<span class="line"></span>
<span class="line"></span>
<span class="line">(2) 自动推送:最为便捷的提交方式,请将自动推送的JS代码部署在站点的每一个页面源代码中,部署代码的页面在每次被浏览时,链接会被自动推送给百度。可以与主动推送配合使用。</span>
<span class="line"></span>
<span class="line"></span>
<span class="line">(3) sitemap:您可以定期将网站链接放到sitemap中,然后将sitemap提交给百度。百度会周期性的抓取检查您提交的sitemap,对其中的链接进行处理,但收录速度慢于主动推送。</span>
</pre></p>
    个人建议:主动推送和两种方式。 (不过百度爬虫被屏蔽了,而且百度对托管不太友好,所以经常爬取失败,影响了网站的权重。所以后来决定删除。)

    使用站长工具抓取自己的网页,然后请求搜索引擎收录。但是如果我要收录几个搜索引擎,就需要一一提交,太麻烦了。

    作者发现网上有人写了一个hexo的自动提交插件:hexo--urls-to--

    作者表示文章可以达到效果。有时发布后5分钟就可以在Bing上搜索到(我查了源码,发现作者采用了主动推送的方式)

    决定试一试,下面是踩坑的过程,让小牛一一做一下。

    百度收录键

    注册并登录百度搜索资源平台

    点击用户中心、站点管理、添加网站

    使用html标签验证来验证网站

    直接将标签复制到\_data\head.swig即可(作者使用的是NEXT主题,其他主题可以自行探索),格式如下:

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">{% if theme.baidu_site_verification %}</span>
<span class="line">  <meta name="baidu-site-verification" content="你的token" /></span>
<span class="line">{% endif %}</span>
</pre></p>
    同时,搜索SEO。在主题的.yml中,修改如下

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
<span class="line">4</span>
<span class="line">5</span>
<span class="line">6</span>
<span class="line">7</span>
<span class="line">8</span>
<span class="line">9</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line"></span>
<span class="line"># Baidu Webmaster tools verification.</span>
<span class="line"># See: https://ziyuan.baidu.com/site</span>
<span class="line">baidu_site_verification: true</span>
<span class="line"></span>
<span class="line"># Enable baidu push so that the blog will push the url to baidu automatically which is very helpful for SEO.</span>
<span class="line">baidu_push: true    </span>
<span class="line"></span>
<span class="line"></span>
</pre></p>
    (当然,你也可以直接在主题的.yml的ion中填写token就可以了,不用先赋值true,然后在模板中填写,我不想再改了= = )

    最后,编译并发布博客。在博客主页上按 F12。如果看到head标签中有验证标签,则说明成功,如下:

    验证通过后,进入网站:

    这里额外增加一个自动推送方式(#发现next已经集成了,百度收录的自动推送方式就是上面的配置:true)

    然后修改\next\\\.swig(不存在则创建),添加以下代码:

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
<span class="line">4</span>
<span class="line">5</span>
<span class="line">6</span>
<span class="line">7</span>
<span class="line">8</span>
<span class="line">9</span>
<span class="line">10</span>
<span class="line">11</span>
<span class="line">12</span>
<span class="line">13</span>
<span class="line">14</span>
<span class="line">15</span>
<span class="line">16</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">{% if theme.baidu_push %}</span>
<span class="line"><script></span>
<span class="line">(function(){</span>
<span class="line">    var bp = document.createElement(&#x27;script&#x27;);</span>
<span class="line">    var curProtocol = window.location.protocol.split(&#x27;:&#x27;)[0];</span>
<span class="line">    if (curProtocol === &#x27;https&#x27;) {</span>
<span class="line">        bp.src = &#x27;https://zz.bdstatic.com/linksubmit/push.js&#x27;;        </span>
<span class="line">    }</span>
<span class="line">    else {</span>
<span class="line">        bp.src = &#x27;http://push.zhanzhang.baidu.com/push.js&#x27;;</span>
<span class="line">    }</span>
<span class="line">    var s = document.getElementsByTagName("script")[0];</span>
<span class="line">    s.parentNode.insertBefore(bp, s);</span>
<span class="line">})();</span>
<span class="line"></script></span>
<span class="line">{% endif %}</span>
</pre></p>
    这样的话,每次访问博客中的页面时,都会自动提交给百度。 (和我们接下来要讲的主动推送没有冲突)。

    当然,我们需要的是百度提交的秘钥:

    在搜索服务、通用采集、API提交中,记下下面的接口调用地址【在百度站长平台注册的域名,key】

    复制秘钥,稍后会用到

    Bing包含密钥注册,登录Bing新站长平台

    添加网站

    像百度一样,选择HTML Meta标签

    只需将标签复制到\_data\head.swig即可(作者使用的是NEXT主题,其他主题可以自行探索),格式如下:

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">{% if theme.bing_site_verification %}</span>
<span class="line">  <meta name="msvalidate.01" content="你的token" /></span>
<span class="line">{% endif %}</span>
</pre></p>
    同时搜索seo。在主题的.yml中,修改如下

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line"># Bing Webmaster tools verification.</span>
<span class="line"># See: https://www.bing.com/webmaster</span>
<span class="line">bing_site_verification: true</span>
</pre></p>
    验证通过后,进入网站

   


    单击“URL 提交”,然后单击“设置”图标、API 访问、API 密钥,并记下 API 密钥

    复制密钥,稍后会用到。

    包含键(此部分已弃用并跳过)

    这部分是相当麻烦的。我花了很长时间才完成所有配置。不幸的是,即使我在中国有代理,我也无法提交。插件作者使用了cl来解决这个问题,但我个人觉得没有必要。这部分功能已被弃用,已使用   代替。等待作者更新更好的解决方案!

    参考开发平台官方文档

    创建项目、启用 API 并在 API 控制台中创建凭证。

    按照提示创建项目并创建服务帐户。您只需按照网站提示进行配置操作,无需完成获取 token等后续操作。

    创建服务帐户

    创建密钥并选择json格式

    授予 G Suite 域范围的委派权限(不执行此步骤,跳过它)

    验证网站所有权

    最好选择域资源验证方式。只需一个域名即可匹配多种格式的URL。然后您将获得一个 TXT 记录值。将其复制到您的域名 DNS 并添加 TXT 记录。单击验证。

    (域名是在阿里云上购买的,所以去阿里云的DNS上添加一条TXT记录即可)

    然后再回到站长网站进行验证。

    选择用户和权限。点击添加所有者

    邮箱地址为:您创建项目时下载的JSON私钥

    场地

    电子邮件地址格式如下所示:

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">my-service-account@project-name.google.com.iam.gserviceaccount.com</span>
</pre></p>
    获取 token以及后续不必要的操作。

    如果你只是按照官方文档在新的搜索控制台中添加权限邮件,仍然会提示没有权限。请转到旧版网站站长工具,点击您的网站,然后添加您的电子邮件地址

    将获得的json密钥文件放入hexo根目录(与hexo .yml文件同一位置)并配置hexo下载插件(我已经替换为淘宝源)

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">cnpm install --save hexo-submit-urls-to-search-engine</span>
</pre></p>
    修改站点的配置文件(编辑hexo的.yml)

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
<span class="line">4</span>
<span class="line">5</span>
<span class="line">6</span>
<span class="line">7</span>
<span class="line">8</span>
<span class="line">9</span>
<span class="line">10</span>
<span class="line">11</span>
<span class="line">12</span>
<span class="line">13</span>
<span class="line">14</span>
<span class="line">15</span>
<span class="line">16</span>
<span class="line">17</span>
<span class="line">18</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">hexo_submit_urls_to_search_engine:</span>
<span class="line">  submit_condition: count #链接被提交的条件,可选值:count | period 现仅支持count</span>
<span class="line">  count: 10 # 提交最新的10个链接</span>
<span class="line">  period: 900 # 提交修改时间在 900 秒内的链接</span>
<span class="line">  google: 0 # 是否向Google提交,可选值:1 | 0(0:否;1:是)</span>
<span class="line">  bing: 1 # 是否向bing提交,可选值:1 | 0(0:否;1:是)</span>
<span class="line">  baidu: 1 # 是否向baidu提交,可选值:1 | 0(0:否;1:是)</span>
<span class="line">  txt_path: submit_urls.txt ## 文本文档名, 需要推送的链接会保存在此文本文档里</span>
<span class="line">  baidu_host: https://cjh0613.github.io ## 在百度站长平台中注册的域名</span>
<span class="line">  baidu_token: 请按照文档说明获取 ## 请注意这是您的秘钥, 所以请不要把它直接发布在公众仓库里!</span>
<span class="line">  bing_host: https://cjh0613.github.io ## 在bing站长平台中注册的域名</span>
<span class="line">  bing_token: 请按照文档说明获取 ## 请注意这是您的秘钥, 所以请不要把它直接发布在公众仓库里!</span>
<span class="line">  google_host: https://cjh0613.github.io ## 在google站长平台中注册的域名</span>
<span class="line">  google_key_file: Project.json #存放google key的json文件,放于网站根目录(与hexo _config.yml文件位置相同),请不要把json文件内容直接发布在公众仓库里!</span>
<span class="line">  replace: 0  # 是否替换链接中的部分字符串,可选值:1 | 0(0:否;1:是)</span>
<span class="line">  find_what: http://cjh0613.github.io/blog</span>
<span class="line">  replace_with: https://cjh0613.com</span>
<span class="line"></span>
</pre></p>
    完成上述配置后,在Hexo根目录下运行hexo g命令时,会生成一个.txt文件,用于存放要推送的链接。

    发现一个错误:

    看了3秒,我发现罪魁祸首就是复制成中文的冒号。把它改成英文就可以了。

    运行成功

    我发现找不到.txt。最后搜索了一下,在目录中找到了。

    您可以打开该文件检查链接是否正确。如果没有,请访问hexo的.yml进行配置。您还可以在推送链接之前手动修改此 .txt 文件。

    一切都很好

    配置

    修改站点文件的.yml,找到

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
<span class="line">4</span>
<span class="line">5</span>
<span class="line">6</span>
<span class="line">7</span>
<span class="line">8</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">deploy:</span>
<span class="line">- type: git ##注意这个前面也要加 -</span>
<span class="line">  repo: git@xxx</span>
<span class="line">  branch: master </span>
<span class="line">  #添加本插件的配置项:</span>
<span class="line">- type: cjh_google_url_submitter</span>
<span class="line">- type: cjh_bing_url_submitter</span>
<span class="line">- type: cjh_baidu_url_submitter</span>
</pre></p>
    这样执行hexo d就会运行这个插件并推送博客。

    我们再次执行 3命令:

   


<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">hexo clean</span>
<span class="line">hexo g</span>
<span class="line">hexo d</span>
</pre></p>
    解:每种类型:上面前面都有-

    如果部分链接推送失败,请手动处理:根据反馈修改保存提交链接的txt(一般将推送成功的链接删除),然后直接运行hexo再次推送即可,无需重新生成网站。

    返回信息

    推送成功的返回信息格式如下:

    必应

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">Bing response:  { d: null }</span>
</pre></p>
    百度

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">Baidu response:  {"remain":2999,"success":1}</span>
</pre></p>
    谷歌

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
<span class="line">3</span>
<span class="line">4</span>
<span class="line">5</span>
<span class="line">6</span>
<span class="line">7</span>
<span class="line">8</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">Google response:  { urlNotificationMetadata:</span>
<span class="line">   { url:</span>
<span class="line">      &#x27;https://cjh0613.github.io&#x27;,</span>
<span class="line">     latestUpdate:</span>
<span class="line">      { url:</span>
<span class="line">         &#x27;https://cjh0613.github.io&#x27;,</span>
<span class="line">        type: &#x27;URL_UPDATED&#x27;,</span>
<span class="line">        notifyTime: &#x27;2020-06-12T05:37:25.701779228Z&#x27; } } }</span>
</pre></p>
    经测试,百度、Bing都可以,但是不行,一直报错:

    插件作者原话:

    认为没有必要使用cl后,转而使用,因为的索引速度比百度快得多,所以问题不大。

    配置  站点地图

    下载插件

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">cnpm install hexo-generator-sitemap --save </span>
</pre></p>
    配置 Hexo.yml

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">sitemap:</span>
<span class="line">    path: sitemap.xml</span>
</pre></p>
    同时请注意,在根目录的.yml文件中,大约第17行处,将url更改为在百度站长平台上添加的域名,即您网站的首页地址:

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
<span class="line">2</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line"># URL</span>
<span class="line">url: https://www.xiaoniuhululu.com</span>
</pre></p>
    执行hexo g重新生成会在目录下生成.xml文件。发布后,您可以在控制台中提交。

    然后执行hexo d部署网站,然后访问你的/.xml,就可以看到站点地图了。

    例如我的是:

<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">1</span>
</pre></p>
<p style='margin-bottom:15px;color:#555555;font-size:15px;line-height:200%;text-indent:2em;'>    <pre><span class="line">https://xiaoniuhululu.com/sitemap.xml</span>
</pre></p>
    谷歌站长平台(这部分需要科学上网)

    进入  网站管理员平台并登录您的  帐户后,系统会要求您验证网站所有权:

    最好选择域资源验证方式。只需一个域名即可匹配多种格式的URL。然后您将获得一个 TXT 记录值。将其复制到您的域名 DNS 并添加 TXT 记录。单击验证。

    (域名是在阿里云上购买的,所以去阿里云的DNS上添加一条TXT记录即可)

    然后再回到站长网站进行验证。

    提交给以供收录并选择站点地图

    再次站点:

    建议顺便提交百度和Bing站点地图。无论如何都不会有冲突。

    概括

    百度站长平台:

    谷歌网站管理员平台:

    Bing站长平台:

    里面有各种功能,你可以看到网站提交或收录的相关数据,并耐心等待搜索引擎收录。

    网站推广固然重要,但当然如果你想留住上网的兄弟姐妹,你的文章内容一定要过硬。

    参考文档:

    本文到此结束。喜欢的话就支持一下,欢迎关注!
您需要登录后才可以回帖 登录 | 立即注册

Archiver|手机版|小黑屋|关于我们

Copyright © 2001-2024, Tencent Cloud.    Powered by Discuz! X3.5    京ICP备20013102号-30

违法和不良信息举报电话:86-13718795856 举报邮箱:hwtx2020@163.com

GMT+8, 2024-12-24 07:01 , Processed in 0.079669 second(s), 17 queries .