hexo-文章html短链接插件前言 Hexo默认的静态URL格式是 :year/:month/:day/:title,即按年、月、日、标题的形式生成固定链接 例如:http://www.xxx.com/2022/11/08/文章标题 默认URL的格式会产生很多斜杠,百度蜘蛛在抓取网页时会根据网页权重抓取网页,比如最先抓取的首页(一般都是自己的域名,比较简短),因此在链接里不宜出现过多的斜杠,最好不要超过两个 还有一个问题:如果文章的标题使用了中文,经过转码后,URL会变得特别长,在最后我会贴上对比图。 使用hexo-abbrlink插件便可解决以上出现的问题,以往修改标题会导致原始链接失效,使用这个插件后只要不更改文章中的abbrlink值,文章的链接就会是持久的 安装插件 1npm install hexo-abbrlink --save 具体插件链接:hexo-abbrlink 配置 修改_config.yml配置文件 12## permalink: :year/:month/:day/:title/permalink: posts/:abbrlink.html ...
安知鱼主题全局配置站点配置语言修改站点配置文件 _config.yml,不是主题配置文件。 默认语言是 en 主题支持三种语言 default(en) zh-CN (简体中文) zh-TW (繁体中文) 网站资料修改网站各种资料,例如标题、副标题和邮箱等个人资料,请修改博客根目录的_config.yml 。 导航配置修改 主题配置文件 123456789101112131415161718192021menu: 文章: 隧道: /archives/ || anzhiyu-icon-box-archive 分类: /categories/ || anzhiyu-icon-shapes 标签: /tags/ || anzhiyu-icon-tags 友链: 友人帐: /link/ || anzhiyu-icon-link 朋友圈: /fcircle/ || anzhiyu-icon-artstation 留言板: /comments/ || anzhiyu-icon-envelope 我的: 音乐馆: /music/ || anzhi ...
安知鱼主题进阶配置评论开启评论需要在 comments-use 中填写你需要的评论。 支持双评论显示,只需要配置两个评论(第一个为默认显示) 12345678910comments: # Up to two comments system, the first will be shown as default # Choose: Valine/Waline/Twikoo/Artalk use: Twikoo # Twikoo/Waline text: false # Display the comment name next to the button # lazyload: The comment system will be load when comment element enters the browser's viewport. # If you set it to true, the comment count will be invalid lazyload: true count: true # Display comment count i ...
安知鱼主题额外配置额外配置Footer 设置since 是一个来展示你站点起始时间的选项。它位于页面的最底部。 12345678910111213141516171819202122232425262728293031323334# Footer Settings# --------------------------------------footer: owner: enable: true since: 2024 custom_text: runtime: enable: true launch_time: 10/01/2024 00:00:00 # 网站上线时间 work_img: \config\imgs\李小白-上班摸鱼中.svg work_description: 距离月入25k也就还差一个大佬带我~ offduty_img: \config\imgs\李小白-下班啦.svg offduty_description: 下班了就该开开心心的玩耍,嘿嘿~ # 徽标部分配置项 https://shields.io/ # ...
甲骨文云开放所有端口Ubuntu系统下:1234567891011开放所有端口iptables -P INPUT ACCEPTiptables -P FORWARD ACCEPTiptables -P OUTPUT ACCEPTiptables -FUbuntu镜像默认设置了Iptable规则,关闭它apt-get purge netfilter-persistentreboot或者强制删除rm -rf /etc/iptables && reboot Centos系统下:12345678910删除多余附件systemctl stop oracle-cloud-agentsystemctl disable oracle-cloud-agentsystemctl stop oracle-cloud-agent-updatersystemctl disable oracle-cloud-agent-updater停止firewallsystemctl stop firewalld.service禁止firewall开机启动systemctl disable firewall ...