什么是子域名,我们的后台管理系统, 比如cms.heboan.com。
配置子域名需要用到蓝图技术:我现在buleprints下面创建一个cms.py 蓝图
from flask import Blueprintcms_bp = Blueprint('cms', __name__, subdomain='cms')@cms_bp.route('/')def index(): return 'cms page'
在主程序my_flask.py注册该蓝图
...from blueprints.cms import cms_bp...app.register_blueprint(cms_bp)
编辑配置文件config.py添加如下一行
SERVER_NAME = 'heboan.com:5000'
编辑hosts 文件(C:\Windows\System32\drivers\etc\hosts)
#添加此行127.0.0.1 heboan.com cms.heboan.com