1、找到以下目录中的host文件

C:\Windows\System32\drivers\etc

2、使用管理员权限将host文件剪切到其他目录
3、在host文件中增加任意域名映射

127.0.0.1 www.test.com

4、将修改后的host文件剪切到原来目录
5、在flask中增加以下代码

app.config['SERVER_NAME'] = 'www.test.com:5000'

在typecho源码中找到如下文件

/var/HyperDown.php

在文件中找到386行附近的如下代码

<a href=\"{$url}\">{$escaped}</a>

修改为

<a target=\"_blank\" href=\"{$url}\">{$escaped}</a>

在文件中找到398行附近的如下代码

<a href=\"{$self->_definitions[$matches[2]]}\">{$escaped}</a>

修改为

<a target=\"_blank\" href=\"{$self->_definitions[$matches[2]]}\">{$escaped}</a>

一、更改此次安装模块的源

pip install 模块名 -i https://pypi.tuna.tsinghua.edu.cn/simple

二、永久更改安装源需
1、在当前用户目录下创建pip文件夹
2、在pip文件夹中创建pip.ini文件
3、在pip.ini文件中输入以下代码

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

三、推荐几个国内安装源

# 清华大学
https://pypi.tuna.tsinghua.edu.cn/simple/
# 阿里云
http://mirrors.aliyun.com/pypi/simple/
# 豆瓣
http://pypi.douban.com/simple/