File Metadata Attributes
Atlas Device Sync 、 Atlas Edge Server 、 Data API和HTTPS endpoints均已弃用。 有关详细信息,请参阅弃用页面。
Overview
您可以为使用Atlas App Services托管的每个文件定义元数据属性。 元数据属性映射到标准HTTP headers 并允许您选择配置App Services如何提供文件以及请求资源的客户端应如何处理这些文件。本页提供了示例并描述了每个可用属性的用途。
Content-Type
Content-Type 文件属性表示 媒体类型 的文件。
注意
如果您没有为文件指定 Content-Type
属性,App Services 将尝试根据文件扩展名自动向其添加Content-Type
属性。
例如,App Services 会自动将属性Content-Type: application/html
添加到文件myPage.html
中。
示例
指示文件包含 HTML
Content-Type: application/html
内容部署
Content-Disposition 文件属性向客户端应用程序(例如网络浏览器)指示文件是应作为附件下载还是作为网页内联显示。
示例
显示内联文件
Content-Disposition: inline
下载文件
Content-Disposition: attachment
使用自定义文件名下载文件
Content-Disposition: attachment; filename="myFile.txt"
内容编码
内容编码 文件属性表示应用于该文件的任何编码。客户端应用程序可以使用此标头来确定如何正确解码文件。
示例
指示无编码
Content-Encoding: identity
指示 GZIP 编码
Content-Encoding: gzip
按应用程序顺序指示多种编码
Content-Encoding: gzip, identity
Content-Language
Content-Language 文件属性(可选)指定文件的预期目标受众使用的语言。此属性不一定表示实际写入文件所使用的语言。
示例
指定单一语言
Content-Language: en-US
指定多种语言
Content-Language: en-US, en-CA, en-UK
缓存控制
Cache-Control 文件属性指示 CDN 服务器应如何处理文件的缓存副本。
示例
每五分钟刷新一次缓存文件
Cache-Control: max-age=300
从不缓存文件
Cache-Control: no-cache
Web 站点重定向位置
Website-Redirect-Location
文件将请求重定向到指定目标。
示例
将请求重定向到其他文件
Website-Redirect-Location: https://example.com/file/redirectedFile.txt