加密访问
Posted Xavier Jiezou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加密访问相关的知识,希望对你有一定的参考价值。
引言
今天给大家推荐一款适用于 Hexo 的静态博客加密插件:hexo-blog-encrypt,搭配此插件你可以写一些私密博客,通过密码验证的方式让人不能随意浏览。
安装
npm install hexo-blog-encrypt
或
yarn add hexo-blog-encrypt
用法
快速使用
添加 password
字段到文章信息头 Front-matter
,该字段用于设置文章访问密码:
---
title: Hello World
date: 2016-03-30 21:18:02
password: hello
---
演示(密码就是
password
字段对应的值hello
):点击跳转
高级设置
---
title: Hello World
date: 2016-03-30 21:12:21
password: hello
abstract: Here's something encrypted, password is required to continue reading.
message: Hey, password is required here.
wrong_pass_message: Oh, this is an invalid password. Check and try again, please.
---
abstract
:用于设置加密文章显示的摘要。message
:输入密码提示。wrong_pass_message
: 输入错误提示。
演示(密码就是
password
字段对应的值hello
):点击跳转
参考
以上是关于加密访问的主要内容,如果未能解决你的问题,请参考以下文章