nginx 访问/apple-app-site-association

今天我们的ios说他那边需要放一个apple-app-site-association 文件 用来支持他那边的功能,先说一下要求 他要求给他一个线上官网的地址后面跟上他所需要文件的地址 比如 www.baidu.com/apple-app-site-association 文件
首先打开服务器nginx的配置文件

在官网配置下再加一个serve入口
location /apple-app-site-association {
           charset UTF-8;
           default_type application/octet-stream;
           return 200 '{\"applinks\":{\"apps\":[],\"details\":[{\"appID\":\"xxxxxxxxxxxxxxxxx\",\"paths\":[\"/*\"]}]}}';
        }

访问官网链接 www.baidu.com/apple-app-site-association 即可直接下载
如果想要打开页面展示里面的文本信息 需要更改default_type text/html; 会将这个视为html文件 直接打开

你可能感兴趣的:(nginx 访问/apple-app-site-association)