hexo创建404
先做好一个404.html
的html页面,放到source
文件夹下,此时如果进行生成,hexo会自作多情地render,要禁止解析,可以在html内容前加入:
1
2
layout: false
---
即可,此时生成会在public生成一个404.html页面,在github
无须设置,在其他服务器(如nginx
)还需要改动配置文件。
这是本站的公益404页面
:http://falconchen.github.io/404.html
先做好一个404.html
的html页面,放到source
文件夹下,此时如果进行生成,hexo会自作多情地render,要禁止解析,可以在html内容前加入:
1
2
layout: false
---
即可,此时生成会在public生成一个404.html页面,在github
无须设置,在其他服务器(如nginx
)还需要改动配置文件。
这是本站的公益404页面
:http://falconchen.github.io/404.html
java 的integer与boolean两种类型并不相容,只能用下面的boolean变量来测试
boolean isHot = true;
while (isHot){ }
镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在):
通过config
命令
npm config set registry http://registry.cnpmjs.org
npm info underscore (如果上面配置正确这个命令会有字符串response)
命令行指定
npm --registry http://registry.cnpmjs.org info underscore
编辑 ~/.npmrc
,win下为nodejs安装目录下的npmrc
,加入下面内容:
registry = http://registry.cnpmjs.org
搜索镜像: http://cnpmjs.org
建立或使用镜像,参考: https://github.com/fenmgk2/cnpmjs.org
新建一个vi.bat
放到%path%
下,如c:\windows\system32
下,写入以下内容:
\path\to\vim.exe %1%
方法二,批量设置别名 (推荐)
1. 新建一个文件`aliases.txt`,放在任意目录下,写入如下别名内容:
ls=dir /ONE $*
ll=dir /ONE $*
cat=type $*
rm=del $*
cd=cd /d $*
vi=G:\falconDisk\Vim\vim74\gvim $*
2. 新建另一个文件 `autorun.bat` ,放在任意目录,内容如下:
@echo off
cls
color 0A
doskey /macrofile=\path\to\aliases.txt
3. 找到注册表如下位置:
[HKEY_CURRENT_USER\Software\Microsoft\Command Processor]
添加一个字符串值Autorun,值为\path\to\autorun.bat
4. 启动命令行可以看到效果了
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in trobuleshooting or you can ask me on GitHub.