Docs 菜单
Docs 主页
/ /
Atlas App Services
/ /

File Metadata Attributes

在此页面上

  • Overview
  • Content-Type
  • 内容部署
  • 内容编码
  • Content-Language
  • 缓存控制
  • Web 站点重定向位置

您可以为使用Atlas App Services托管的每个文件定义元数据属性。 元数据属性映射到标准HTTP headers 并允许您选择配置App Services如何提供文件以及请求资源的客户端应如何处理这些文件。本页提供了示例并描述了每个可用属性的用途。

Content-Type 文件属性表示 媒体类型 的文件。

注意

如果您没有为文件指定 Content-Type属性,App Services 将尝试根据文件扩展名自动向其添加Content-Type属性。

例如,App Services 会自动将属性Content-Type: application/html添加到文件myPage.html中。

Content-Type: application/html

Content-Disposition 文件属性向客户端应用程序(例如网络浏览器)指示文件是应作为附件下载还是作为网页内联显示。

Content-Disposition: inline
Content-Disposition: attachment
Content-Disposition: attachment; filename="myFile.txt"

内容编码 文件属性表示应用于该文件的任何编码。客户端应用程序可以使用此标头来确定如何正确解码文件。

Content-Encoding: identity
Content-Encoding: gzip
Content-Encoding: gzip, identity

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

Website-Redirect-Location文件将请求重定向到指定目标。

Website-Redirect-Location: https://example.com/file/redirectedFile.txt

后退

配置文件元数据