{"id":58397,"date":"2020-08-11T15:43:25","date_gmt":"2020-08-11T19:43:25","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=58397"},"modified":"2025-02-21T12:42:30","modified_gmt":"2025-02-21T17:42:30","slug":"hide-apache-version-and-linux-os","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/","title":{"rendered":"How to Hide Your Apache Version and Linux OS From HTTP Headers"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-1024x538.jpg\" alt=\"Hide Your Apache Version and Linux OS - Server HTTP Headers\" class=\"wp-image-94603\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-1024x538.jpg 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-300x158.jpg 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-768x403.jpg 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide.jpg 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>When users visit your website, your web server will sometimes offer more information than they need for an optimal, accessible user experience (UX). The average user has no valid reason for needing to know what web server software or operating system (OS) you\u2019re using. Fortunately, average users won\u2019t see this information usually unless they encounter a server-generated page (e.g. 400 or 500 errors).<\/p>\n\n\n\n<p class=\"alert alert-info\">Not using Apache? See our article on <a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/nginx\/hide-nginx-server-version\/\">hiding your NGINX web server version<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"why\">Why You Should Hide System Info<\/h2>\n\n\n\n<p>Verbose user interfaces and banner grabbing applications display this information for users who are likely searching for version-specific vulnerabilities in your server environment, or maybe curious about what competitors are using to provide similar services. Such information can be used for benign purposes such as marketing competitor analysis.<\/p>\n\n\n\n<p>Regardless, hiding your OS and Apache version on CentOS\/AlmaLinux or Debian\/Ubuntu adds a degree of difficulty for potential cyber attackers.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"view\">How to View Server HTTP Headers<\/h3>\n\n\n\n<p>There are multiple ways to view a server\u2019s HTTP headers. The easiest option is to use an online tool such as <a rel=\"noreferrer noopener\" href=\"https:\/\/securityheaders.com\/\" target=\"_blank\">SecurityHeaders.com<\/a> or Observatory.Mozilla.org. Some prefer browser plugins such as Wappalyzer which offer stats and more.<\/p>\n\n\n\n<p class=\"alert alert-warning\">Remember, we do not take any responsibility for what third party organizations may be doing with the information they receive from your usage. There are many online cybersecurity tools that can help secure your server. Research and use these tools at your own risk. Feel free to notify us if you believe we\u2019ve supported malicious third-party software.<\/p>\n\n\n\n<p>If you\u2019re on a Linux system, you can use the \u201ccurl\u201dor \u201cwget\u201d terminal commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl --head yourdomain.com<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">wget --server-response --spider yourdomain.com<\/pre>\n\n\n\n<p>If logged into the Linux system you\u2019ll be modifying, you can use these commands with \u201clocalhost\u201d in lieu of the domain:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl --head localhost<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">wget --server-response --spider localhost<\/pre>\n\n\n\n<p>Within the header information you\u2019ll see a line that states what web server software and version you\u2019re using alongside your server OS. For example:<\/p>\n\n\n\n<p><code>Server: Apache\/2.4.10 (Debian)<\/code><\/p>\n\n\n\n<p>We\u2019ll obfuscate everything after <em>Apache<\/em> to clean up the server header.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"hide\">Hide Apache Version and OS<\/h2>\n\n\n\n<p>The steps below will remove your Apache version and OS from HTTP headers and server-generated pages such as 500 errors.<\/p>\n\n\n\n<ol class=\"wp-block-list article_list\">\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/how-to-login-ssh\/\">Log into SSH as root<\/a>.<\/li>\n\n\n\n<li>Edit your Apache server configuration file using Nano (or your preferred text editor).<br>CentOS\/AlmaLinux: <pre>nano \/etc\/httpd\/conf\/httpd.conf<\/pre>Debian\/Ubuntu: <pre>nano \/etc\/apache2\/conf-enabled\/security.conf<\/pre><\/li>\n\n\n\n<li>Scroll down to the \u201cServerTokens\u201d section where you\u2019ll probably see multiple lines commented out (beginning with \u201c#\u201d) stating \u201cServerTokens\u201d and different options. Change the uncommented line, likely \u201cServerTokens OS\u201d, or comment out the line and create a new line to hide the Apache version and OS from HTTP headers:<pre>ServerTokens Prod<\/pre><p class=\"alert alert-info\">If you don\u2019t see the \u201cServerTokens\u201d and \u201cServerSignature\u201d sections, simply add the necessary lines to the bottom of your configuration file.<\/p><\/li>\n\n\n\n<li>The next section down should be the \u201cServerSignature\u201d section. Turning this off hides the information from server-generated pages (e.g. Internal Server Error). <pre>ServerSignature Off<\/pre><\/li>\n\n\n\n<li>Exit the file and save changes: <kbd>Ctrl<\/kbd> + <kbd>X<\/kbd><\/li>\n\n\n\n<li>Restart Apache.<br>CentOS\/AlmaLinux: <pre>systemctl restart httpd<\/pre>Debian \/Ubuntu: <pre>systemctl restart apache2<\/pre><\/li>\n\n\n\n<li>Recheck your server HTTP headers: <pre>curl --head localhost<\/pre><\/li>\n<\/ol>\n\n\n\n<p>Are you looking for other ways to better secure your Linux server? Check out our guides on <a href=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/vps-hosting\/ways-to-harden-your-vps-hosting\/\">VPS Security<\/a> and <a href=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/secure-cloud-server-hosting\/\">how to harden your cloud server<\/a>.<\/p>\n\n\n<div class=\"jumbotron\">\r\n<p>If you don\u2019t need cPanel, don't pay for it. Only pay for what you need with our scalable <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">Cloud VPS Hosting<\/a>.<\/p>\r\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>CentOS, Debian, or Ubuntu    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>No Bloatware    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>SSH and Root Access<\/p>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>When users visit your website, your web server will sometimes offer more information than they need for an optimal, accessible user experience (UX). The average user has no valid reason for needing to know what web server software or operating system (OS) you&#8217;re using. Fortunately, average users won&#8217;t see this information usually unless they encounter<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4355],"tags":[],"class_list":["post-58397","post","type-post","status-publish","format-standard","hentry","category-apache"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Hide Your Apache Version From HTTP Headers<\/title>\n<meta name=\"description\" content=\"Learn how to hide your Apache version and operating system from your HTTP headers and banner grabbers for better server security.\" \/>\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.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Hide Your Apache Version From HTTP Headers\" \/>\n<meta property=\"og:description\" content=\"Learn how to hide your Apache version and operating system from your HTTP headers and banner grabbers for better server security.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-11T19:43:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-21T17:42:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-1024x538.jpg\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"How to Hide Your Apache Version and Linux OS From HTTP Headers\",\"datePublished\":\"2020-08-11T19:43:25+00:00\",\"dateModified\":\"2025-02-21T17:42:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/\"},\"wordCount\":534,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-1024x538.jpg\",\"articleSection\":[\"Apache\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/\",\"name\":\"How to Hide Your Apache Version From HTTP Headers\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-1024x538.jpg\",\"datePublished\":\"2020-08-11T19:43:25+00:00\",\"dateModified\":\"2025-02-21T17:42:30+00:00\",\"description\":\"Learn how to hide your Apache version and operating system from your HTTP headers and banner grabbers for better server security.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide.jpg\",\"width\":1200,\"height\":630,\"caption\":\"Hide Your Apache Version and Linux OS - Server HTTP Headers\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Hide Your Apache Version and Linux OS From HTTP Headers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Hide Your Apache Version From HTTP Headers","description":"Learn how to hide your Apache version and operating system from your HTTP headers and banner grabbers for better server security.","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.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/","og_locale":"en_US","og_type":"article","og_title":"How to Hide Your Apache Version From HTTP Headers","og_description":"Learn how to hide your Apache version and operating system from your HTTP headers and banner grabbers for better server security.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-08-11T19:43:25+00:00","article_modified_time":"2025-02-21T17:42:30+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-1024x538.jpg","type":"","width":"","height":""}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"How to Hide Your Apache Version and Linux OS From HTTP Headers","datePublished":"2020-08-11T19:43:25+00:00","dateModified":"2025-02-21T17:42:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/"},"wordCount":534,"commentCount":1,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-1024x538.jpg","articleSection":["Apache"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/","name":"How to Hide Your Apache Version From HTTP Headers","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide-1024x538.jpg","datePublished":"2020-08-11T19:43:25+00:00","dateModified":"2025-02-21T17:42:30+00:00","description":"Learn how to hide your Apache version and operating system from your HTTP headers and banner grabbers for better server security.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/apache-version-linux-os-hide.jpg","width":1200,"height":630,"caption":"Hide Your Apache Version and Linux OS - Server HTTP Headers"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/hide-apache-version-and-linux-os\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Hide Your Apache Version and Linux OS From HTTP Headers"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4355,"name":"Apache","slug":"apache","link":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/58397","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=58397"}],"version-history":[{"count":10,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/58397\/revisions"}],"predecessor-version":[{"id":129425,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/58397\/revisions\/129425"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=58397"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=58397"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=58397"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}