The Match parameter is context sensitive depending on the value of the Condition parameter.
|
Match
|
Description
|
Example
|
|
Accept
|
Content-Types that are acceptable
|
Accept: text/plain
|
|
Accept-Encoding
|
Acceptable encodings
|
Accept-Encoding: <compress | gzip | deflate | sdch | identity>
|
|
Accept-Language
|
Acceptable languages for response
|
Accept-Language: en-US
|
|
Accept-Ranges
|
What partial content range types this server supports
|
Accept-Ranges: bytes
|
|
Authorization
|
Authentication credentials for HTTP authentication
|
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
|
|
Charge-To
|
Contains account information for the costs of the application of the method requested
|
|
|
Content-Encoding
|
The type of encoding used on the data.
|
Content-Encoding: gzip
|
|
Content-Length
|
The length of the response body in Octets (8-bit bytes)
|
Content-Length: 348
|
|
Content-Type
|
The mime type of the body of the request (used with POST and PUT requests)
|
Content-Type: application/x-www-form-urlencoded
|
|
Cookie
|
A HTTP cookie previously sent by the server with Set-Cookie (below)
|
Cookie: $Version=1; Skin=new;
|
|
Date
|
Date and time at message was originated
|
Date = “Date” “:” HTTP-date
|
|
ETag
|
An identifier for a specific version of a resource, often a message digest
|
ETag: “aed6bdb8e090cd1:0”
|
|
From
|
The email address of the user making the request
|
From: user@example.com
|
|
If-Modified-Since
|
Allows a 304 Not Modified to be returned if the content is unchanged
|
If-Modified-Since: Sat, 29 Oct 1994 19:43:31 GMT
|
|
Last-Modified
|
The last modified date for the requested object, in RFC 2822 format
|
Last-Modified: Tue, 15 Nov 1994 12:45:26 GMT
|
|
Pragma
|
The Implementation-specific headers may have various effects anywhere along the request-response chain.
|
Pragma: no-cache
|
|
Referrer
|
This is the address of the previous web page from which a link to the currently requested page was followed
|
Referrer: HTTP://www.edgenexus.io
|
|
Server
|
A name for the server
|
Server: Apache/2.4.1 (Unix)
|
|
Set-Cookie
|
A HTTP cookie
|
Set-Cookie: UserID=JohnDoe; Max-Age=3600; Version=1
|
|
User-Agent
|
The user agent string of the user agent
|
User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
|
|
Vary
|
Tells downstream proxies how to match future request headers to decide
whether the cached response can be used rather than requesting a fresh
one from the origin server
|
Vary: User-Agent
|
|
X-Powered-By
|
Specifies the technology (e.g. ASP.NET, PHP, JBoss) supporting the web application
|
X-Powered-By: PHP/5.4.0
|