{"id":30072,"date":"2024-11-12T12:39:34","date_gmt":"2024-11-12T12:39:34","guid":{"rendered":"https:\/\/www.seobility.net\/en\/blog\/wiki\/http-headers\/"},"modified":"2025-02-26T09:23:40","modified_gmt":"2025-02-26T09:23:40","slug":"HTTP_headers","status":"publish","type":"wiki","link":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers","title":{"rendered":"HTTP headers"},"content":{"rendered":"<h2><span class=\"mw-headline\" id=\"Definition\">Definition<\/span><\/h2>\n<div class=\"thumb tright\">\n<div class=\"thumbinner\" style=\"width:452px;\"><a href=\"https:\/\/www.seobility.net\/en\/wiki\/images\/d\/d2\/HTTP-Header.png\"><img decoding=\"async\" alt=\"HTTP Header\" src=\"\/en\/wiki\/images\/thumb\/d\/d2\/HTTP-Header.png\/450px-HTTP-Header.png\" width=\"450\" height=\"340\" class=\"thumbimage\" srcset=\"\/en\/wiki\/images\/thumb\/d\/d2\/HTTP-Header.png\/675px-HTTP-Header.png 1.5x, \/en\/wiki\/images\/d\/d2\/HTTP-Header.png 2x\" \/><\/a>  <\/p>\n<div class=\"thumbcaption\"><b>Figure:<\/b> HTTP Header &#8211; Author: Seobility &#8211; License: <a href=\"\/en\/wiki\/creative-commons-license-by-sa-4-0\" title=\"Creative Commons License BY-SA 4.0\">CC BY-SA 4.0<\/a><\/div>\n<\/div>\n<\/div>\n<p>The HTTP header is part of the Hypertext Transfer Protocol (HTTP) and transmits additional information during HTTP requests or responses. In addition to the data that is delivered to a browser by the web server of the called website, server and browser exchange meta information about the document via the HTTP header.\n<\/p>\n<p>An HTTP request contains a header area with information such as the date of the request, the referrer, or the preferred language. The HTTP response also contains a header field in which the server sends its information to the user&#8217;s browser. This information exchange is usually invisible to the end user.\n<\/p>\n<p>HTTP headers include fields which themselves consist of one line. Each line contains a name\/value pair &#8211; called key-value pair &#8211;  separated by a colon and is terminated by a line break.\n<\/p>\n<p>Values that can be used for the HTTP header are defined in the RFC (&#8220;Requests for Comments&#8221;). In addition to the specified fields, there are also non-standard headers that can be used to add user-defined information. These headers usually start with an <code>x-<\/code>.\n<\/p>\n<h2><span class=\"mw-headline\" id=\"Examples_of_Request_Header_Fields\">Examples of Request Header Fields<\/span><\/h2>\n<p>Below, you can see some examples of possible request header fields. For a comprehensive overview of all request and response header fields, see <a rel=\"nofollow\" class=\"external free\" href=\"https:\/\/en.wikipedia.org\/wiki\/List_of_HTTP_header_fields\">https:\/\/en.wikipedia.org\/wiki\/List_of_HTTP_header_fields<\/a>.\n<\/p>\n<h3><span class=\"mw-headline\" id=\"Accept_Fields\">Accept Fields<\/span><\/h3>\n<p>The following fields are used to specify what kind of response is accepted by the server.\n<\/p>\n<p><b>Accept<\/b>\n<\/p>\n<p>This field informs the server what kind of data can be returned.\n<\/p>\n<p>The Accept field in the HTTP request can be used to specify certain MIME types that are accepted by the client. The general syntax is as follows:\n<\/p>\n<pre>Accept: &lt;MIME_type&gt;\/&lt;MIME_subtype&gt;&#160;;q=value<\/pre>\n<p>Multiple media types can be separated by commas. The optional value q represents the quality level on a scale from 0 to 1. Example:\n<\/p>\n<pre>Accept: text\/plain; q = 0,5, text\/html, text\/x-dvi; q = 0.8, Text\/x-c<\/pre>\n<p><b>The available directives are:<\/b>\n<\/p>\n<ul>\n<li> The client supports exactly one MIME type such as text\/html:<\/li>\n<\/ul>\n<pre>&lt;MIME_type&gt;\/&lt;MIME_subtype&gt;<\/pre>\n<ul>\n<li> A MIME type without a specified subtype. image\/* matches image\/png, image\/svg, image\/gif and all other image types:<\/li>\n<\/ul>\n<pre>&lt;MIME_type&gt;\/*<\/pre>\n<ul>\n<li> Any MIME type:<\/li>\n<\/ul>\n<pre>*\/*<\/pre>\n<p>Each value used is put into a preference order that is expressed using the relative quality value called weight:\n<\/p>\n<pre>;q= (q-factor weighting)<\/pre>\n<p><b>Accept-Charset<\/b>\n<\/p>\n<p>The Accept-Charset field is used in HTTP headers to specify which <a href=\"\/en\/wiki\/Character_Encoding\" title=\"Character Encoding\">character sets<\/a> the client accepts for the response.\n<\/p>\n<pre>Accept-Charset: character-set<\/pre>\n<p>If several character sets are specified, enter them separated by commas. For example:\n<\/p>\n<pre>Accept-Charset: iso-8859-5, Unicode-1-1; q = 0,8<\/pre>\n<p><b>Accept-Encoding<\/b>\n<\/p>\n<p>The Accept-Encoding header field limits the encoding algorithms that are acceptable in the response. Syntax:\n<\/p>\n<pre>Accept-Encoding: encodings<\/pre>\n<p>Examples are:\n<\/p>\n<pre>Accept-Encoding: gzip<\/pre>\n<pre>Accept-Encoding: *<\/pre>\n<pre>Accept-Encoding: gzip;q=0.7<\/pre>\n<p><b>Accept-Language<\/b>\n<\/p>\n<p>The Accept-Language header field tells the server what human-readable language the server is expected to return. This is an indication and is not necessarily completely controlled by the user. The server should always avoid overriding an explicit user selection. The syntax is:\n<\/p>\n<pre>Accept-Language: &lt;language&gt;; q=qvalue<\/pre>\n<p>Multiple languages can be separated by commas. For example:\n<\/p>\n<pre>Accept-Language: en-US; q=0.9<\/pre>\n<p>Allowed values can be looked up in <a class=\"external mw-magiclink-rfc\" rel=\"nofollow\" href=\"\/\/tools.ietf.org\/html\/rfc1766\">RFC 1766<\/a>.\n<\/p>\n<h3><span class=\"mw-headline\" id=\"Authorization\">Authorization<\/span><\/h3>\n<p>The Authorization field is used in HTTP headers to authenticate a user-agent with the server. The syntax is as follows:\n<\/p>\n<pre>Authorization:&lt;type&gt; &lt;credentials&gt;<\/pre>\n<h3><span class=\"mw-headline\" id=\"Cookie\">Cookie<\/span><\/h3>\n<p>The <a href=\"\/en\/wiki\/Cookie\" title=\"Cookie\">Cookie<\/a> HTTP Request header contains stored HTTP cookies in name\/value pairs previously sent by the server using the Set-Cookie header. This behavior can be blocked by browsers so that no cookies are transmitted to the server.\n<\/p>\n<pre>Cookie: name1=value1; name2=value2; name3=value3<\/pre>\n<h3><span class=\"mw-headline\" id=\"Expect\">Expect<\/span><\/h3>\n<p>The HTTP request header field Expect specifies the client&#8217;s expectations that must be met by a server for the request to be processed properly.\n<\/p>\n<p>The general syntax is as follows:\n<\/p>\n<pre>Expect&#160;: 100-continue<\/pre>\n<h3><span class=\"mw-headline\" id=\"From\">From<\/span><\/h3>\n<p>The From field of HTTP headers contains an email address of the user who controls the requesting client. Example:\n<\/p>\n<pre>From: <a href=\"\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"720517101f130106170032170a131f021e175c111d1f\">[email&#160;protected]<\/a><\/pre>\n<p>The From field can be used in HTTP headers for logging purposes.\n<\/p>\n<h3><span class=\"mw-headline\" id=\"Host\">Host<\/span><\/h3>\n<p>The Host field is used in HTTP headers to specify the internet host and port number for the requested resource. The syntax is:\n<\/p>\n<pre>Host: host:port<\/pre>\n<p>If the port number is missing, this implies the default port 80.\n<\/p>\n<h3><span class=\"mw-headline\" id=\"If_Fields\">If Fields<\/span><\/h3>\n<p>The following fields are used to specify certain conditions under which the requested files should be returned.\n<\/p>\n<p><b>If-Match<\/b>\n<\/p>\n<p>This header field prompts the server to send the requested file only if it matches the specified <a href=\"\/en\/wiki\/Entity\" title=\"Entity\">entity<\/a> tags. The syntax is:\n<\/p>\n<pre>If-Match: entity-tag<\/pre>\n<p>For example:\n<\/p>\n<pre>If-Match: \"*\"<\/pre>\n<p>An asterisk (*) indicates that any file can be sent.\n<\/p>\n<p><b>If-Modified-Since<\/b>\n<\/p>\n<p>If If-Modified-Since is specified in HTTP headers, a requested resource will only be delivered by the server if it has been changed since the specified date. Otherwise, there will be no delivery and the page will be loaded from the cache of the browser. Syntax:\n<\/p>\n<pre>If-Modified-Since: HTTP date<\/pre>\n<p>An example is:\n<\/p>\n<pre>If-Modified-Since: Sat, 13 Oct 2017 15:16:27 GMT<\/pre>\n<p><b>If-None-Match<\/b>\n<\/p>\n<p>This header prompts the server to send the requested file only if it does not match any of the specified entity tags. The syntax is:\n<\/p>\n<pre>If-None-Match: entity-tag<\/pre>\n<p>Examples are:\n<\/p>\n<pre>If-None-Match: \"xyzzy\"<\/pre>\n<pre>If-None-Match: *<\/pre>\n<p><b>If-Range<\/b>\n<\/p>\n<p>The If-Range header field is used in HTTP headers to request only the part of the content that is missing if the content has not been changed, and the entire content if a change has been made to it. The syntax is as follows:\n<\/p>\n<pre>If-Range: entity-tag\/HTTP date<\/pre>\n<p>Either an entity tag or a date can be used:\n<\/p>\n<pre>If-Range: Sat, 13 Oct 2017 15:16:27 GMT<\/pre>\n<p>If the content has not been changed, the server returns the byte range specified by the range header. Otherwise, the entire new document is returned.\n<\/p>\n<p><b>If-Unmodified-Since<\/b>\n<\/p>\n<p>The general syntax is:\n<\/p>\n<pre>If-Unmodified-Since: HTTP date<\/pre>\n<p>This field is used in the same way as the If-Modified-Since field.\n<\/p>\n<h3><span class=\"mw-headline\" id=\"Proxy-Authorization\">Proxy-Authorization<\/span><\/h3>\n<p>The Proxy-Authorization header field allows the client to identify itself or the user to a proxy. Syntax:\n<\/p>\n<pre>Proxy-Authorization: &lt;type&gt; &lt;credentials&gt;<\/pre>\n<h3><span class=\"mw-headline\" id=\"Range\">Range<\/span><\/h3>\n<p>The Range header field specifies the subranges of content that are requested. The syntax is:\n<\/p>\n<pre>Range: bytes-unit=first-byte-pos \"-\" [last-byte-pos]<\/pre>\n<p>The values &#8220;first-byte-pos&#8221; and &#8220;last-byte-pos&#8221; specify the first and last bytes of the included content, but do not have to be both specified. Multiple content areas can be separated by commas.\n<\/p>\n<h3><span class=\"mw-headline\" id=\"Referrer\">Referrer<\/span><\/h3>\n<p>The Referrer header field allows the client to specify the address (URL) of the resource from which the URL was requested. The general syntax is as follows:\n<\/p>\n<pre>Referer: URL<\/pre>\n<p>For example:\n<\/p>\n<pre>Referer: https:\/\/www.example.com<\/pre>\n<h3><span class=\"mw-headline\" id=\"User-Agent\">User-Agent<\/span><\/h3>\n<p>This header field sends information about the client to a server. For example, the syntax can be as follows:\n<\/p>\n<pre>User-Agent: &lt;product&gt;\/&lt;product version&gt; &lt;comment&gt;<\/pre>\n<h2><span class=\"mw-headline\" id=\"Similar_articles\">Similar articles<\/span><\/h2>\n<ul>\n<li> <a href=\"\/en\/wiki\/HTTPS\" title=\"HTTPS\">HTTPS<\/a><\/li>\n<\/ul>\n<p><script data-cfasync=\"false\" src=\"\/cdn-cgi\/scripts\/5c5dd728\/cloudflare-static\/email-decode.min.js\"><\/script><script type=\"application\/ld+json\">\n    {\n      \"@context\": \"https:\/\/schema.org\/\",\n      \"@type\": \"ImageObject\",\n      \"contentUrl\": \"https:\/\/www.seobility.net\/en\/wiki\/images\/d\/d2\/HTTP-Header.png\",\n      \"license\": \"https:\/\/creativecommons.org\/licenses\/by-sa\/4.0\/\",\n      \"acquireLicensePage\": \"https:\/\/www.seobility.net\/en\/wiki\/creative-commons-license-by-sa-4-0\"\n    }\n    <\/script>\n<\/p>\n<p><script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"Article\",\n  \"author\": {\n    \"@type\": \"Organization\",\n    \"name\": \"Seobility\",\n    \"url\": \"https:\/\/www.seobility.net\/\"\n  }\n}\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Definition Figure: HTTP Header &#8211; Author: Seobility &#8211; License: CC BY-SA 4.0 The HTTP header is part of the Hypertext Transfer Protocol (HTTP) and transmits additional information during HTTP requests or responses. In addition to the data that is delivered to a browser by the web server of the called website, server and browser exchange [&hellip;]<\/p>\n","protected":false},"author":38,"featured_media":0,"comment_status":"open","ping_status":"open","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-30072","wiki","type-wiki","status-publish","hentry","wiki_categories-web-development"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What are HTTP Headers? Definition + Examples - Seobility Wiki<\/title>\n<meta name=\"description\" content=\"The HTTP header is part of the Hypertext Transfer Protocol (HTTP) and transmits additional information during HTTP requests or responses. Learn more ...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What are HTTP Headers? Definition + Examples - Seobility Wiki\" \/>\n<meta property=\"og:description\" content=\"The HTTP header is part of the Hypertext Transfer Protocol (HTTP) and transmits additional information during HTTP requests or responses. Learn more ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers\" \/>\n<meta property=\"og:site_name\" content=\"Seobility\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/seobility.net\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-26T09:23:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/seobility-og-image.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@seobility_net\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"ScholarlyArticle\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/HTTP_headers#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/HTTP_headers\"},\"author\":{\"name\":\"Seobility Wiki Team\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/#\\\/schema\\\/person\\\/c838e66a3b46262b4c963df5cd5b2d8a\"},\"headline\":\"HTTP headers\",\"datePublished\":\"2024-11-12T12:39:34+00:00\",\"dateModified\":\"2025-02-26T09:23:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/HTTP_headers\"},\"wordCount\":982,\"commentCount\":0,\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/HTTP_headers#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/HTTP_headers\",\"url\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/HTTP_headers\",\"name\":\"What are HTTP Headers? Definition + Examples - Seobility Wiki\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/#website\"},\"datePublished\":\"2024-11-12T12:39:34+00:00\",\"dateModified\":\"2025-02-26T09:23:40+00:00\",\"description\":\"The HTTP header is part of the Hypertext Transfer Protocol (HTTP) and transmits additional information during HTTP requests or responses. Learn more ...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/HTTP_headers#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/HTTP_headers\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/HTTP_headers#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Wiki\",\"item\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"HTTP headers\",\"item\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wp-json\\\/wp\\\/v2\\\/wiki\\\/30072\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/\",\"name\":\"Seobility\",\"description\":\"Online SEO Software &amp; Tools For Better Rankings\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/#\\\/schema\\\/person\\\/c838e66a3b46262b4c963df5cd5b2d8a\",\"name\":\"Seobility Wiki Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Seobility-S-2025-150x150.png\",\"url\":\"https:\\\/\\\/www.seobility.net\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Seobility-S-2025-150x150.png\",\"contentUrl\":\"https:\\\/\\\/www.seobility.net\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Seobility-S-2025-150x150.png\",\"caption\":\"Seobility Wiki Team\"},\"description\":\"The Seobility Wiki team consists of seasoned SEOs, digital marketing professionals, and business experts with combined hands-on experience in SEO, online marketing and web development. All our articles went through a multi-level editorial process to provide you with the best possible quality and truly helpful information. Learn more about the people behind the Seobility Wiki.\",\"url\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/blog\\\/author\\\/seobility-wiki-team\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What are HTTP Headers? Definition + Examples - Seobility Wiki","description":"The HTTP header is part of the Hypertext Transfer Protocol (HTTP) and transmits additional information during HTTP requests or responses. Learn more ...","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers","og_locale":"en_US","og_type":"article","og_title":"What are HTTP Headers? Definition + Examples - Seobility Wiki","og_description":"The HTTP header is part of the Hypertext Transfer Protocol (HTTP) and transmits additional information during HTTP requests or responses. Learn more ...","og_url":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers","og_site_name":"Seobility","article_publisher":"https:\/\/www.facebook.com\/seobility.net\/","article_modified_time":"2025-02-26T09:23:40+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/seobility-og-image.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@seobility_net","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"ScholarlyArticle","@id":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers#article","isPartOf":{"@id":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers"},"author":{"name":"Seobility Wiki Team","@id":"https:\/\/www.seobility.net\/en\/#\/schema\/person\/c838e66a3b46262b4c963df5cd5b2d8a"},"headline":"HTTP headers","datePublished":"2024-11-12T12:39:34+00:00","dateModified":"2025-02-26T09:23:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers"},"wordCount":982,"commentCount":0,"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers","url":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers","name":"What are HTTP Headers? Definition + Examples - Seobility Wiki","isPartOf":{"@id":"https:\/\/www.seobility.net\/en\/#website"},"datePublished":"2024-11-12T12:39:34+00:00","dateModified":"2025-02-26T09:23:40+00:00","description":"The HTTP header is part of the Hypertext Transfer Protocol (HTTP) and transmits additional information during HTTP requests or responses. Learn more ...","breadcrumb":{"@id":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.seobility.net\/en\/wiki\/HTTP_headers#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.seobility.net\/en\/"},{"@type":"ListItem","position":2,"name":"Wiki","item":"https:\/\/www.seobility.net\/en\/wiki"},{"@type":"ListItem","position":3,"name":"HTTP headers","item":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/wiki\/30072"}]},{"@type":"WebSite","@id":"https:\/\/www.seobility.net\/en\/#website","url":"https:\/\/www.seobility.net\/en\/","name":"Seobility","description":"Online SEO Software &amp; Tools For Better Rankings","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.seobility.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.seobility.net\/en\/#\/schema\/person\/c838e66a3b46262b4c963df5cd5b2d8a","name":"Seobility Wiki Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/Seobility-S-2025-150x150.png","url":"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/Seobility-S-2025-150x150.png","contentUrl":"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/Seobility-S-2025-150x150.png","caption":"Seobility Wiki Team"},"description":"The Seobility Wiki team consists of seasoned SEOs, digital marketing professionals, and business experts with combined hands-on experience in SEO, online marketing and web development. All our articles went through a multi-level editorial process to provide you with the best possible quality and truly helpful information. Learn more about the people behind the Seobility Wiki.","url":"https:\/\/www.seobility.net\/en\/blog\/author\/seobility-wiki-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/wiki\/30072","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/wiki"}],"about":[{"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/types\/wiki"}],"author":[{"embeddable":true,"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/users\/38"}],"replies":[{"embeddable":true,"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/comments?post=30072"}],"version-history":[{"count":0,"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/wiki\/30072\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/media?parent=30072"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}