Not a developer? Go to MovableType.com

Documentation

HTTPContentType

When this tag is used in a dynamically published index template, the value specified to the type attribute will be returned in the Content-Type HTTP header sent to web browser. This content is never displayed directly to the user but is instead used to signal to the browser the data type of the response.

When this tag is used in a system template, such as the search results template, mt-search.cgi will use the value specified to "type" attribute and returns it in Content-Type HTTP header to web browser.

When this tag is used in statically published template, this template tag outputs nothing.

Attributes:

  • type

    A valid HTTP Content-Type value, for example 'application/xml'. Note that you must not specify charset portion of Content-Type header value in this attribute. MT will set the portion automatically by using PublishCharset configuration directive.

Example:

    <$mt:HTTPContentType type="application/xml"$>
Back